when I ran a MATLAB app I created I get Warning: Marker input is ignored in command prompt. What this means
조회 수: 22 (최근 30일)
이전 댓글 표시
Marker input is ignored
댓글 수: 4
Walter Roberson
2021년 6월 24일
If you then execute
[msg,warnID] = lastwarn
then what shows up for warnID ?
채택된 답변
Nitin Phadkule
2021년 6월 25일
댓글 수: 4
Walter Roberson
2021년 6월 28일
yline(app.UIAxes_2,0, 'k_', 'LineWidth', 2);
Underscore is a marker style that indicates a horizontal line. You want
yline(app.UIAxes_2,0, 'k-', 'LineWidth', 2);
추가 답변 (1개)
Walter Roberson
2021년 6월 25일
Something in your code invokes either xline() or yline(), and specifies a marker in doing so. For example,
xline(4, 'r*')
However, xline() and yline() do not permit markers.
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!