when I ran a MATLAB app I created I get Warning: Marker input is ignored in command prompt. What this means
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Nitin Phadkule
am 23 Jun. 2021
Kommentiert: Nitin Phadkule
am 29 Jun. 2021
Marker input is ignored
4 Kommentare
Walter Roberson
am 24 Jun. 2021
If you then execute
[msg,warnID] = lastwarn
then what shows up for warnID ?
Akzeptierte Antwort
Nitin Phadkule
am 25 Jun. 2021
4 Kommentare
Walter Roberson
am 28 Jun. 2021
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);
Weitere Antworten (1)
Walter Roberson
am 25 Jun. 2021
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 Kommentare
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

