Error while using dot notation
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rightia Rollmann
el 18 de Feb. de 2017
Respondida: Star Strider
el 18 de Feb. de 2017
I execute the following code but I get the error "Insufficient number of outputs from right hand side of equal sign to satisfy assignment." I am using MATLAB R2016a.
plot(rand(3))
lgd = legend;
c = lgd.TextColor;
lgd.TextColor = 'red';
0 comentarios
Respuesta aceptada
Star Strider
el 18 de Feb. de 2017
It works correctly if you provide legend with something to do:
plot(rand(3))
lgd = legend('Data');
c = lgd.TextColor;
lgd.TextColor = 'red';
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!