"Invalid Handle" error message occurs

I have the following very simple code:
fprintf(' Select Folder to store output plots and files \n');
FigPath = uigetdir('C:\Projects', ' Select Folder to store output plots ');
%FigPath = cat(2,FigPath,'\');
name = cat(2,name,'.png');
saveas(FigPath,name); % save plot to subj directory
Other Matlab programs have the very same code and work fine. Note that the %-statement adds a backslash, which doesn't help either.
Please: what's going on?

 Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 31 Okt. 2017

0 Stimmen

Pay attention to the syntax of saveas(). The first argument should be the handle of the figure, not the path of your saved file.
Also, fullfile() might be better than cat() in your case.

Weitere Antworten (0)

Kategorien

Mehr zu Environment and Settings finden Sie in Hilfe-Center und File Exchange

Gefragt:

Don
am 31 Okt. 2017

Kommentiert:

Don
am 31 Okt. 2017

Community Treasure Hunt

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

Start Hunting!

Translated by