plot function legend is wrong.

조회 수: 9 (최근 30일)
Ben Whitby
Ben Whitby 2023년 3월 20일
댓글: Ben Whitby 2023년 3월 20일
Hi All,
Can anybody give me some pointers on why the legend in the following plot is wrong. I use a loop to plot two variables, one is an array.
figure (55)
for i = 1:152
plot(t3,PowerAuts(:,:,i)); hold on;
end
hold on
plot(t3, MeanDailyPwr1,'color','k','LineWidth',4);
legend('MeanDailyPwr1','Orientation','horizontal')
grid on
ylim([0 40]);
yticks([0:5:40]);
xlim([t3(1) t3(end)])
ax.FontSize = 22;
xlabel('Time (hh:mm)','FontSize',24)
ylabel('Load Demand (kW)','FontSize',24)
title('Daily Load Demand','FontSize',28)
I want to display the variable MeanDailyPower1 in the legend but it is the wrong color at the moment.
  댓글 수: 2
Antoni Garcia-Herreros
Antoni Garcia-Herreros 2023년 3월 20일
You may want to check here or here
You should reference your plot:
pMean=plot(t3, MeanDailyPwr1,'color','k','LineWidth',4);
l=legend(pMean,'MeanDailyPwr1','Orientation','horizontal');
Ben Whitby
Ben Whitby 2023년 3월 20일
I got it. Thank you.

댓글을 달려면 로그인하십시오.

답변 (2개)

Star Strider
Star Strider 2023년 3월 20일
The legend is probably picking up the first line plotted, that by default is blue.
Perhaps this —
figure (55)
for i = 1:152
plot(t3,PowerAuts(:,:,i)); hold on;
end
hold on
hpMDP = plot(t3, MeanDailyPwr1,'color','k','LineWidth',4);
legend(hpMDP, 'MeanDailyPwr1','Orientation','horizontal')
grid on
ylim([0 40]);
yticks([0:5:40]);
xlim([t3(1) t3(end)])
ax.FontSize = 22;
xlabel('Time (hh:mm)','FontSize',24)
ylabel('Load Demand (kW)','FontSize',24)
title('Daily Load Demand','FontSize',28)
Including the handle to the 'MeanDailyPower' plot specifies what the legend is to refer to.
.

Dave B
Dave B 2023년 3월 20일
편집: Dave B 2023년 3월 20일
The legend is labeling the first line in the chart rather than the last one. An easy way to specify which line should be labeled in the legend is to grab the output from plot and pass that into the legend function
a = rand(10);
hold on
for i = 1:size(a,1)
plot(a(i,:))
end
aveline=plot(mean(a),'k','LineWidth',2);
legend(aveline,'The Average')

카테고리

Help CenterFile Exchange에서 Legend에 대해 자세히 알아보기

제품


릴리스

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by