octave-maintainers
[Top][All Lists]
Advanced

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

Re: how to make subplots larger


From: Daniel J Sebald
Subject: Re: how to make subplots larger
Date: Mon, 9 Jul 2018 04:12:51 -0500
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1

On 07/09/2018 03:15 AM, LucaLuca wrote:
hi, look this pics:

https://gyazo.com/f94d1fa189057e54fc9506f88cd56d6f


subplot(2,3,1)
plot(1:1:length(Equity),Equity(:,1),1:1:length(EquityFiltred),EquityFiltred(:,1));
xlabel('Giorni ');
ylabel('Equity');
title(nomeSistemi(:,numSistem));

subplot(2,3,3)
plot(1:1:length(Draw),Draw(:,1),1:1:length(DrawFiltred),DrawFiltred(:,1));
xlabel('Giorni ');
ylabel('Draw ');



it's possible to large it?

Manual control of location, font sizes, etc. can be done with get/set of figure and axes properties. See

help get
help set

in particular, e.g.:

>> get(gca,'position')
ans =

   0.71014   0.58653   0.19486   0.33847

>> set(gca,'position',[.5 .5 .3 .4])

Dan

PS: This is developers discussion list for bugs, new features, etc.



reply via email to

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