Why am I getting the same colour of the legend for the last 2 plots?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Star Strider
el 28 de Mzo. de 2023
Editada: Star Strider
el 28 de Mzo. de 2023
I suspect that it is because ‘y2’ has more than one row.
The solution is to return the handles of the plots, and select only one line from the second plot in the legend call —
H = 1:25;
y1 = rand(1,25)+0.25;
y2 = rand(2,25)+0.5;
F = rand(2,25);
figure
plot(H, y1, '-b');
hold on
plot(H, y2, '-g');
plot(H, F(1,:), 'r-');
hold off
legend('Line1','Line2','Line3', 'Location','best')
title('Original')
figure
hp1 = plot(H, y1, '-b');
hold on
hp2 = plot(H, y2, '-g');
hp3 = plot(H, F(1,:), 'r-');
hold off
legend([hp1;hp2(1);hp3],'Line1','Line2','Line3', 'Location','best')
title('Corrected')
EDIT — (28 Mar 2023 at 16:37)
Wrote ‘column’, intended ‘row’ in the first sentence. Fixed now.
.
2 comentarios
Más respuestas (1)
Mathieu NOE
el 28 de Mzo. de 2023
add one more line
at the end of your script, add :
hold off
0 comentarios
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!