If you have r2020a, use exportgraphics().
How can i save the scatter in GUI?
    1 次查看(过去 30 天)
  
       显示 更早的评论
    
I want to save the pictures I scatter, and I can name them freely under any path.
But I have no idea.
DefaultBSX = [10 30 50 70 90 110 10 30 50 70 90 110];
         DefaultBSY = [15 15 15 15 15 15  35 35 35 35 35 35];
         DefaultBSZ = repmat(3,12,1); 
         scatter(DefaultBSX,DefaultBSY,150,'^','filled') 
         grid minor
         axis([0 120 0 50]);
[FileName, PathName, ~] = uiputfile('*.png', 'Save table as:');
File = fullfile(PathName, FileName);
%saveas(gcf,'Scatter.png') %This is one way. But I want to be more flexible
0 个评论
回答(1 个)
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Printing and Saving 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

