subplots

Ben Abbott bpabbott at mac.com
Tue Jul 7 17:08:06 CDT 2009


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


More information about the Help-octave mailing list