help-octave
[Top][All Lists]
Advanced

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

Re: Plot Title Rotation


From: Geraint Paul Bevan
Subject: Re: Plot Title Rotation
Date: Thu, 19 Jun 2003 17:41:50 +0100 (BST)

On Thu, 19 Jun 2003, Peter C. Gravelle wrote:

> Hi.
> 
> I have tried to place titles on my sub plots, and they appear out of
> order.
> 
> [SAMPLE CODE]
> figure(1);
> subplot(2,2,1); plot (t, st); title ('Message');
> subplot(2,2,2); plot (t, sbam); title ('sbam');
> subplot(2,2,3); plot (t, dsb); title ('DSB');
> subplot(2,2,4); plot (t, ssb); title ('SSB');
> [/SAMPLE CODE]
> 
> Thanks in advance for your assistance,
> -P. C. Gravelle
> 

Peter,

try putting the 'title' command before the 'plot' command:

 [SAMPLE CODE]
 figure(1);
 subplot(2,2,1); title ('Message'); plot (t, st);
 subplot(2,2,2); title ('sbam'); plot (t, sbam);
 subplot(2,2,3); title ('DSB'); plot (t, dsb);
 subplot(2,2,4); title ('SSB'); plot (t, ssb);
 [/SAMPLE CODE]
 
Geraint



-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.

Octave's home on the web:  http://www.octave.org
How to fund new projects:  http://www.octave.org/funding.html
Subscription information:  http://www.octave.org/archive.html
-------------------------------------------------------------



reply via email to

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