Insert a string in a code to export a figure

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').

 Akzeptierte Antwort

Guillaume
Guillaume am 20 Okt. 2015

0 Stimmen

Use sprintf or plain string concatenation to build your string:
hgexport(gcf, sprintf('%s.tif', name), options);
%or
hgexport(gcf, [name, '.tif'], options);

Weitere Antworten (0)

Gefragt:

ly
am 20 Okt. 2015

Beantwortet:

am 20 Okt. 2015

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by