help-octave
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Plotting in octave


From: asha g
Subject: Re: Plotting in octave
Date: Tue, 2 Nov 2010 12:12:58 +0530 (IST)

 
> Try including the marker size as well.
> 
>     set (findall (gcf, "-property",
> "linewidth"), "linewidth", 2)
>     set (findall (gcf, "-property",
> "markersize"), "markersize", 12)


Hurrah. Got it to work. 

It is not enough to add the above line. You need to specify the marker size 
after each plot command eg :


plot(X,y,'rs',"markersize",12)
plot(X1,y1,'m*',"markersize",12)
plot (X2,y2,'g+',"markersize",12)
plot(X3,y3,'bd',"markersize",12)

Then it works.
Will check the same with linewidth. Though from what I saw, it does increase 
the border width. 

Thanks Ben. Now I need to add these commands and replot all the graphs. I wish 
I had asked the group before I started.

Asha g 







reply via email to

[Prev in Thread] Current Thread [Next in Thread]