help-octave
[Top][All Lists]
Advanced

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

Re: multiplot *.m files


From: Vinayak Dutt
Subject: Re: multiplot *.m files
Date: Mon, 3 Jul 95 16:18:43 CDT

Hi:

here's an example:

multiplot(2,2)    % to switch to multiplot with 2X2 subplots

mplot(x,y)   %  draw a plot in 1,1 location

mplot(x,y) % draw again in 1,2 location

mplot(x,y) % in 2,1 ... etc

oneplot()  % switch back to sinle plot, which will update the
                % display with the four plots (muliplot stuff will
                % not show till you switch back to single plot mode

the mplot() command is hacked version of plot() which
also update to next subplot window for next plot. The same
could also be done as:

subplot(1,2)
plot(x,y)
subplot(2,1)
plot(x,y)

etc

-
--vinayak-
/*
 * vinayak dutt
 * ex-graduate student, ultrasound research
 * mayo graduate school, rochester mn
 *
 * e-mail: address@hidden
 *         address@hidden
 *         address@hidden
 *
 */
#include "disclaimer.h"


reply via email to

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