Invalid first data argument
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kiran Sagar
el 7 de Abr. de 2016
Comentada: Image Analyst
el 8 de Abr. de 2016
The following code:
plot(x,y,'Marker','*','Color','r',x2,y2,'Marker','--','Color','b')
generates this error: "Invalid first data argument".
here x, y and x2, y2 are arrays of same size.
2 comentarios
Respuesta aceptada
Image Analyst
el 7 de Abr. de 2016
Editada: Image Analyst
el 7 de Abr. de 2016
'--' is not a valid choice for 'Marker'. Use a valid marker. See the help for a list of them.
Try this:
plot(x,y,'r*-', x2,y2,'bd-');
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Legend en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!