On 9/7/07, Matthieu Brucher <[EMAIL PROTECTED]> wrote:
> That means too that having a plot on 2/3 of the screen is not possible, I
> suppose ?
To do that you need to use the axes command (a subplot is just a
special case of an axes on a regular grid). For example, you could do
(the arguments are
>
> Only if this subplots overlap -- in this case they do not. When a
> previous subplot is overlapped by a new subplot, the old one is
> erased.
>
That means too that having a plot on 2/3 of the screen is not possible, I
suppose ?
Matthieu
--
On 9/7/07, Matthieu Brucher <[EMAIL PROTECTED]> wrote:
>
> Thank you for the fast answer :)
> That should be what I asked for. Won't the other subplots be erased ?
Only if this subplots overlap -- in this case they do not. When a
previous subplot is overlapped by a new subplot, the old one is
er
>
> Although I am not completely sure what you are asking, I think you are
> asking for:
>
> subplot(221)
> subplot(222)
> subplot(212)
>
> then the last subplot (bottom row) will span both columns.
>
> JDH
>
Thank you for the fast answer :)
That should be what I asked for. Won't the other subplo
On 9/7/07, Matthieu Brucher <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I want to know if it is possible to create a plot on several subplots. For
> instance :
>
> pl.subplot(2, 2, 1)
> pl.plot(y1)
> pl.sublot(2, 2, 2)
> pl.plot(y2)
> pl.subplot(2, 2, ???) # Create a plot on the last line
> plot(y3)
>
> I