Error when saving figure with linux command line
8 次查看(过去 30 天)
显示 更早的评论
Receiving an error when I try and save a figure as a png. See traceback below. Calling matlab from a python script with -batch flag.
Error using validate (line 166)
Printing of uicontrols is not supported on this platform.
Error in print (line 67)
pj = validate( pj );
Error in saveas (line 181)
print( h, name, ['-d' dev{i}] )
Error in NavErrPlotsLN25X (line 238)
saveas(figH,fullfile(uutData.ftp(1).folder,figFileName),'png');
Error in NavErrPlotsProgramSwitch (line 42)
statusLog = NavErrPlotsLN25X(uutData,config,statusLog);
Error in FTPReviewWeb (line 51)
log = NavErrPlotsProgramSwitch(uutData,config,log);
0 个评论
回答(1 个)
Jan
2022-4-26
编辑:Jan
2022-4-26
In batch mode, Matlab does not support interactive GUI elements.
How do you save the figure as PNG? See: https://www.mathworks.com/help/matlab/ref/print.html#d123e1146812
print('-noui', ...)
1 个评论
Ruben Krueger
2023-12-21
In my use case, I need the buttons because their labels have critical information, but I don't need their functionality, of course. I am having the same issue as above when trying to save a figure in a Matlab executable. How can print with the UI?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Call Python from MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!