help-octave
[Top][All Lists]
Advanced

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

Re: Inset figures


From: Ben Abbott
Subject: Re: Inset figures
Date: Sat, 07 May 2011 19:50:08 -0400

On May 7, 2011, at 7:18 PM, Shivakumar Jolad wrote:

> I need to plot an inset figure inside the main figure. I am using octave 3.4. 
> I tried several methods of matlab like setting axes position and adjusting 
> width/height. It doesnt work. 
> gnuplot has some way to do it in multiplot. But it is not allowing eps 
> terminal.
> 
> Any help would be greatly appreciated.
> 
> thanks

Please tell us what worked for Matlab but does not work for Octave 3.4.

I tried ...

        figure (1)
        clf
        plot (1:10)
        hax = axes ();
        set (hax, "position", [0.5 0.5 0.25 0.35])
        plot (1:10)

This works for me.

Ben



reply via email to

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