help-octave
[Top][All Lists]
Advanced

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

Re: subplots


From: Ben Abbott
Subject: Re: subplots
Date: Tue, 07 Jul 2009 18:08:06 -0400


On Jul 7, 2009, at 5:38 PM, Roque I wrote:

How to make asymmetrical arrangements of subplots?
i.e.
+----------+-----------+
I          I (fig.2)   I
I          I           I
I (fig.1)  +-----------+
I          I (fig.3)   I
I          I           I
+----------+-----------+


This will depend upon the version of Octave you are using.

However, if you are running 3.2 ...

        suplot(1,2,1)
        plot(1:10)
        suplot(2,2,2)
        plot(1:10)
        suplot(2,2,4)
        plot(1:10)

Ben


reply via email to

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