Output Filename With Print Command
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
The following command prints a postscript file of the current Simulink diagram:
print('-dps', '-s', gcs)
MATLab suggests the following to specify an output file name:
SPECIFYING THE OUTPUT FILE:
<filename> % String on the command line
'<filename>' % String passed in when using function form of PRINT
However, if I use it in the following way:
filename = 'Lies.ps'
print ('-dps', '-s', gcs, filename)
It fails because it thinks you want to print the current screen and some file named 'Lies.ps'.
What is the correct command to accomplish this monumental task?
0 comentarios
Respuesta aceptada
Walter Roberson
el 1 de Abr. de 2013
There is no '-s' option by itself, just '-s' followed as part of the same option by the modelname.
print('-dps', ['-s', gcs], filename)
Más respuestas (0)
Ver también
Categorías
Más información sobre Programmatic Model Editing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!