Insert a string in a code to export a figure
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ly
el 20 de Oct. de 2015
Respondida: Guillaume
el 20 de Oct. de 2015
Hi,
This is code:
...
name='location';
options.Format = 'tiff';
hgexport(gcf, 'name.tif', options);
....
Can the 'location' be inserted to " name.tif" (replace 'name' by 'location')?
The exported filename is 'location.tif' (NOT 'name.tif').
0 comentarios
Respuesta aceptada
Guillaume
el 20 de Oct. de 2015
hgexport(gcf, sprintf('%s.tif', name), options);
%or
hgexport(gcf, [name, '.tif'], options);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Printing and Saving 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!