How can i save the scatter in GUI?

1 Ansicht (letzte 30 Tage)
han han
han han am 2 Aug. 2020
Beantwortet: Image Analyst am 2 Aug. 2020
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

Antworten (1)

Image Analyst
Image Analyst am 2 Aug. 2020
If you have r2020a, use exportgraphics().

Kategorien

Mehr zu File Operations finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by