Linestyle does not change

조회 수: 23 (최근 30일)
ALZ
ALZ 2016년 8월 1일
편집: ALZ 2016년 8월 2일
Hi, am having a trboule with plot and linestyle commands.
Am using the following code
plot(t,r2,'--b');hold on
plot(t,r3,'-.r'); hold on
plot(t,r1,':g'); hold off
But still am having the same linestyle on all curves (--)?
I have tried several ways to go around this problem, but with no luck at all
Thanks
  댓글 수: 5
Image Analyst
Image Analyst 2016년 8월 2일
Are you sure your r are all 1-D vectors and not 2-D matrices?
ALZ
ALZ 2016년 8월 2일
Well, in fact Rs as well as Ts are all one column vector of different lengths

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

답변 (3개)

Azzi Abdelmalek
Azzi Abdelmalek 2016년 8월 1일
Increase the line width
t=0:0.1:10
r1=sin(t)
r2=2*cos(t)
r3=t
plot(t,r2,'--b');hold on
plot(t,r3,'-.r','linewidth',3); hold on
plot(t,r1,':g','linewidth',3);

ALZ
ALZ 2016년 8월 2일
It seems the linewidth command partially solves the problem, Thank you Azzi, but increasing the linewidth is not an option, this way am going to miss some information.

ALZ
ALZ 2016년 8월 2일
편집: ALZ 2016년 8월 2일
Thanks for everyone, it is a rendering problem, if anyone is interested, the problem should be solved by setting the renderer;
figure(1)
plot(t,r2,'--b');hold on
plot(t,r3,'-.r'); hold on
plot(t,r1,':g');
set(figure(1),'Renderer','painters')

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by