Legend for dashed line
조회 수: 36 (최근 30일)
이전 댓글 표시
I have plotted 6 different lines in my figure, 3 solid lines, and 3 dashed lines. When creating a legend however, all lines appear solid. Is there a fix to show the dashed lines (simulated values) as dashed in my legend?
figure(1)
plot(t_measurement,Mx*1000,'-r')
hold on
plot(t_measurement,My*1000, '-b')
plot(t_measurement,-Mz*1000, '-g')
plot(output_time(1:92),output_TB_Mx_BodyFrame(1:92),'--r')
plot(output_time(1:92),output_TB_My_BodyFrame(1:92),'--b')
plot(output_time(1:92),output_TB_Mz_BodyFrame(1:92), '--g')
legend('Measured Mx', 'Measured My', 'Measured Mz', 'Simulated Mx', 'Simulated My', 'Simulated Mz')
yaxis('Bending moment (Nm)')
xaxis('Time (s)')
댓글 수: 6
dpb
2022년 7월 29일
@Walter Roberson -- good thought, but if were so, either
- The columns are identical-enough in values all points overlap, or
- The additional columns are NaN so don't plot, or
- YLIM() has been set so those lines aren't in the visible axis range, and
- There must be a total of at least six such columns collectively.
Otherwise, there would be more than the six visible lines in the plot. But, if one of those conditions were true, and the total number of columns >=6, then the symptoms would match.
답변 (1개)
Cris LaPierre
2022년 8월 1일
I suspect the issue is that you are missing a 'hold off' and have run your code multiple times. At least I could duplicate by running the first 3 plot commands, and then by running all the plot commands without closing the figure window. It occurred because hold was still 'on'. (I created this plot using dummy data)
It is best practice to always pair a 'hold on' with a corresponding 'hold off'.
% Create dummy data
t_measurement = linspace(0,0.9,10);
output_time = linspace(0,0.9);
output_TB_Mx_BodyFrame = 9e3+700*sin(output_time*40*pi);
output_TB_My_BodyFrame = 4.5e3+500*sin(output_time*40*pi);
output_TB_Mz_BodyFrame = -8e3+500*sin(output_time*40*pi);
Mx = 6+rand(size(t_measurement));
My = 4.5*ones(size(t_measurement));
Mz = 13-3*rand(size(t_measurement));
% Your plotting code (I added a 'hold off', anc change xaxis and yaxis to xlabel and ylabel
figure(1)
plot(t_measurement,Mx*1000,'-r')
hold on
plot(t_measurement,My*1000, '-b')
plot(t_measurement,-Mz*1000, '-g')
plot(output_time(1:92),output_TB_Mx_BodyFrame(1:92),'--r')
plot(output_time(1:92),output_TB_My_BodyFrame(1:92),'--b')
plot(output_time(1:92),output_TB_Mz_BodyFrame(1:92), '--g')
hold off
legend('Measured Mx', 'Measured My', 'Measured Mz', 'Simulated Mx', 'Simulated My', 'Simulated Mz','Location','east')
ylabel('Bending moment (Nm)')
xlabel('Time (s)')
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Legend에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!