I would like to kindly ask you for the help with dynamical naming of saved variables in MATLAB.
I have the variable:
Name=’image_xx’
My script generates a variable: waviness
My problem is that I need to save the variable waviness to the .mat file with the name:
image_xx_waviness via the command save(). Please, can you help me how to do that.
Many thanks for any help.

Antworten (1)

David Fletcher
David Fletcher am 6 Apr. 2021
Bearbeitet: David Fletcher am 6 Apr. 2021

0 Stimmen

try this:
save(strcat(Name,'_waviness'),'waviness')

1 Kommentar

Jan Kubicek
Jan Kubicek am 13 Apr. 2021
It works well, thank you very much for your help :-)

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu MATLAB Report Generator finden Sie in Hilfe-Center und File Exchange

Tags

Gefragt:

am 6 Apr. 2021

Kommentiert:

am 13 Apr. 2021

Community Treasure Hunt

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

Start Hunting!

Translated by