when I ran a MATLAB app I created I get Warning: Marker input is ignored in command prompt. What this means
21 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Nitin Phadkule
il 23 Giu 2021
Commentato: Nitin Phadkule
il 29 Giu 2021
Marker input is ignored
4 Commenti
Walter Roberson
il 24 Giu 2021
If you then execute
[msg,warnID] = lastwarn
then what shows up for warnID ?
Risposta accettata
Nitin Phadkule
il 25 Giu 2021
4 Commenti
Walter Roberson
il 28 Giu 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);
Più risposte (1)
Walter Roberson
il 25 Giu 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 Commenti
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!