when I ran a MATLAB app I created I get Warning: Marker input is ignored in command prompt. What this means
22 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Nitin Phadkule
el 23 de Jun. de 2021
Comentada: Nitin Phadkule
el 29 de Jun. de 2021
Marker input is ignored
4 comentarios
Walter Roberson
el 24 de Jun. de 2021
If you then execute
[msg,warnID] = lastwarn
then what shows up for warnID ?
Respuesta aceptada
Nitin Phadkule
el 25 de Jun. de 2021
4 comentarios
Walter Roberson
el 28 de Jun. de 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);
Más respuestas (1)
Walter Roberson
el 25 de Jun. de 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 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!