Взгляните на ОСИ СВОЙСТВА . Как только вы получите указатель на оси, используя h=gca
, вы можете выполнить `set (h, 'propertyName', 'propertyValue', ...), чтобы изменить все свойства осей.
Вот пример (обратите внимание, что вы также можете изменить свойства фигуры или поверхности - см., Например, справку Matlab для figure properties
).
%# create a figure
fh = figure; %# store the figure handle to modify figure properties later
%# plot some data
ph = plot(randn(10,3)); %# this returns three handles, one to each line
%# get the axes handle
ah = gca;
%# hide the axes
set(ah,'Visible','off')
%# show the axes again
set(ah,'Visible','on');
%# change the color to green
set(ah,'Color','g');
%# change the figure color to red (yes, ugly)
set(fh,'Color','r')
%# change the line thickness of the first two lines
set(ph(1:2),'LineWidth',2)