Когда я строю график, в редакторе графиков отображаются оси. Но когда я непосредственно сохраняю график как .png в папке, оси не отображаются.
Мне нужны все четыре оси,так что моя фигура выглядит полной.
hh=pcolor(lon,lat,ghs)
set(hh,'EdgeColor', 'none');
box on
Color=[1,1,1;
1,0.8,0;
1,0,0;
0.4,0,0];
colormap(Color);
set(gca,'FontSize',20)
caxis([0 3])
cd ('C:\Users\soura\Documents\synop\figures\ch2_2\');%When I am saving it here, the axes are not apearing. but it is applearing in the plot editor
saveas (gcf,'a.tiff');