new print command 2019a
Show older comments
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 Comments
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
on 29 Mar 2019
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.
Answers (0)
Categories
Find more on Printing and Saving in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!