Error saving figure: "fileparts (line 43). input must be a row vector of characters"
6 ビュー (過去 30 日間)
古いコメントを表示
Hello, I recently can't save figures as .fig files. it worked until a few weeks ago but suddenly I'm getting an error. I can save the same figure as .png or .jpg, but specifically .fig is not working anymore. The error: "input must be a row vector of characters". I changed the file name to only letters but it still didn't work. this is my code:
> f=figure;
> plot(courtship_index),
> cd('/Users/dgal/MATLAB_results/160901_courtship/')
> saveas(f, 'courtship_index', 'fig')
and I received this error chain:
Error using fileparts (line 43)
Input must be a row vector of characters.
Error in savefig (line 53)
[fpath,fname1,ext] = fileparts(fname);
Error in saveasfig (line 6)
savefig(h, name);
Error in saveas (line 140)
feval( ['saveas' format], h, name )
Error in trim_function (line 67)
saveas(f, 'courtship_index', 'fig')
in a separate case I plotted a different figure and tried to save it by clicking "file" -> "save as" on the figure itself, but got the same error: "error using fileparts (line 43). input must be a row vector of characters".
4 件のコメント
dpb
2016 年 9 月 7 日
What happens if you simply try fileparts from the command line--
fileparts('courtship_index') % ?
Also what does
which fileparts
return and there's always
clear fileparts
then see what happens...
採用された回答
Steven Lord
2016 年 9 月 7 日
Which release of MATLAB are you using?
Are you certain you're using the fileparts function included in MATLAB? Does this show any fileparts.m file outside the toolbox/matlab subdirectory in your MATLAB root directory?
which -all fileparts
9 件のコメント
Steven Lord
2016 年 9 月 13 日
Ah, so the root cause of the problem was one level up. Thanks for closing the loop and letting us know what happened.
その他の回答 (0 件)
参考
カテゴリ
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!