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
Nitin Phadkule
Nitin Phadkule 2021년 6월 24일
>> [msg,warnID] = lastwarn
msg =
'Marker input is ignored.'
warnID =
'MATLAB:graphics:constantline:IgnoredMarker'

댓글을 달려면 로그인하십시오.

채택된 답변

Nitin Phadkule
Nitin Phadkule 2021년 6월 25일
Thanks for the reply, i got the reson of error but i want markers to be shown below. Please suggest how to supress warning.
  댓글 수: 4
Walter Roberson
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
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.

카테고리

Help CenterFile Exchange에서 App Building에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by