User`s guide

deployprint
Orientation
PrintHeader
Note deployprint requires write access to the file system in order to
write temporary files.
Examples Thefollowingisasimpleexampleofhowtoprintafigureinyour
application, regardless of whether the application has been deployed
or not:
figure;
plot(1:10);
if isdeployed
deployprint;
else
print(gcf);
end
See Also isdeployed, print
11-9