help-octave
[Top][All Lists]
Advanced

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

Re: subplot 'position'


From: Ben Abbott
Subject: Re: subplot 'position'
Date: Tue, 03 Dec 2013 10:13:28 -0500

On Dec 3, 2013, at 9:46 AM, Louis Ciotti <address@hidden> wrote:

> Hello,
> 
> I am trying to convert a MATLAB script to octave and it uses the following to 
> position subplots in a specific way:
> 
> subplot('position',[0.55 0.1 0.4 0.2]), 
> plot(Filter2_3db_freq,Filter2_3db_mag,'LineWidth',1);
> 
> What would be the equivalent in OCTAVE?   It seems subplot only takes rows 
> and columns, is there another way?
> 
> Thanks,
> 
> Lou

Does this work for you?

axes ('position', [0.55 0.1 0.4 0.2])
plot (Filter2_3db_freq, Filter2_3db_mag, 'LineWidth', 1);

Ben



reply via email to

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