new print command 2019a
显示 更早的评论
Dear Sirs,
in the past until version 2018b I have used the command
eval(['print -depsc ' bildpfad 'filter_3k_s11b.eps'])
to save a figure. bildpfad is a string for the figure path.
With this command I do not have any problems with the figure size.
At the version 2019a You have changed the print command.
When I use it I get a warning the figure is to large,
The figure is resized and the color is black and not blue as at screen.
Can You give me a simple equivalent command to the
print command above please
Yours sincerely
Siegfried Martius
3 个评论
Why on earth are you using the unnecessary indirection of eval when you can simply call print directly (exactly as its documentation shows)?
Instead of this complex, indirect, obfuscated code:
eval(['print -depsc ' bildpfad 'filter_3k_s11b.eps'])
simply call print directly:
print(fullfile(bildpfad,'filter_3k_s11b.eps'),'-depsc')
I also added fullfile to correctly concatenate the directory and filename, and provided the inputs in the order that the print documentation uses:
Siegfried Martius
2019-3-29
Note that the syntax that Stephen mentions above has absolutely no effect on the result. If your original syntax did not work, the new syntax will still not work. So that's not the reason why you have success with the new command and you probably still need to investigate that (unless you've also followed the advice in Stephen's answer below).
Of course, you definitively should use Stephen's syntax and forget that eval even exists.
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Printing and Saving 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!