Why am I getting the same colour of the legend for the last 2 plots?
2 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Star Strider
2023-3-28
编辑:Star Strider
2023-3-28
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.
.
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Legend 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!