help-octave
[Top][All Lists]
Advanced

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

overlapping subplots


From: RobinW
Subject: overlapping subplots
Date: Wed, 4 Jun 2014 03:23:34 -0700 (PDT)

Hi all,

I have a problem when making subplots (I use gnuplot). I am using octave
3.6.2-5+deb7u1 / qtoctave 0.10.1-3.

I am plotting 24 subplots into a single figure, with three rows and ten
columns. The figure axes are overlapping, because the values are quite long. 

This is an example of the code:

for i=1:24
 
    for j=1:50
    psi1(j)=randn*0.001;
    end
    
    figure(1)   
    subplot(3,10,i)
    plot(psi1)
      hold on

end

This is a screenshot: 
<http://octave.1599824.n4.nabble.com/file/n4664456/screenshot.jpg> 

Do you know how I can get the subplots to behave in a way so that their axes
do not overlap with the figures?

Thanks alot,
Robin




--
View this message in context: 
http://octave.1599824.n4.nabble.com/overlapping-subplots-tp4664456.html
Sent from the Octave - General mailing list archive at Nabble.com.



reply via email to

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