Linestyle does not change

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 commentaires

Which release are you using, and which operating system? Could you show us
get(gcf, 'renderer')
opengl info
Image Analyst
Image Analyst le 2 Août 2016
It works fine for me, though the green line especially, and all the lines that I have are a lot more faint and thinner than yours.
ALZ
ALZ le 2 Août 2016
am using R2015a on windows7 - 64bit
opengl
Version: '3.1.0 - Build 8.15.10.2476'
Vendor: 'Intel'
Renderer: 'Intel(R) HD Graphics Family'
MaxTextureSize: 8192
Visual: 'Visual 0x08, (RGBA 32 bits (8 8 8 8), Z depth...'
Software: 'false'
SupportsGraphicsSmoothing: 1
SupportsDepthPeelTransparency: 1
SupportsAlignVertexCenters: 1
Extensions: {116x1 cell}
MaxFrameBufferSize: 4096
Image Analyst
Image Analyst le 2 Août 2016
Are you sure your r are all 1-D vectors and not 2-D matrices?
ALZ
ALZ le 2 Août 2016
Well, in fact Rs as well as Ts are all one column vector of different lengths

Connectez-vous pour commenter.

Réponses (3)

Azzi Abdelmalek
Azzi Abdelmalek le 1 Août 2016

0 votes

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 le 2 Août 2016

0 votes

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 le 2 Août 2016
Modifié(e) : ALZ le 2 Août 2016

0 votes

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')

Catégories

En savoir plus sur Graphics Performance dans Centre d'aide et File Exchange

Question posée :

ALZ
le 1 Août 2016

Modifié(e) :

ALZ
le 2 Août 2016

Community Treasure Hunt

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

Start Hunting!

Translated by