Change file matlab workspace name as the folder name

2 visualizaciones (últimos 30 días)
EMILIO BASTA
EMILIO BASTA el 27 de Feb. de 2021
Comentada: EMILIO BASTA el 27 de Feb. de 2021
I would like to ask how to change the variable.mat name in my workspace adding the folder name.
For example: in my workspace I have 'POWER.mat' , and the folder name is 'Results2021'
I would like to rename 'POWER.mat' in 'POWER_Results2021'
Thanks for the attention, I am a beginner with Matlab.

Respuesta aceptada

dpb
dpb el 27 de Feb. de 2021
" 'POWER.mat' , and the folder name is 'Results2021'"
Well, it depends on whether you have already created the .mat file by having used SAVE or whether you're just referring to the variable POWER shown in the workspace above. For the latter
folder='POWER_Results2021'; % in variable to change or use cd to retrieve current
save(['POWER_' folder],'POWER')
  1 comentario
EMILIO BASTA
EMILIO BASTA el 27 de Feb. de 2021
Hi dpb thanks for the answer!
Sorry maybe I explained myseld in a bad way.
Let's say that folder name is 'Results2021'
And the variable in my workspace is 'POWER'
how do I save it as 'POWER_Results2021' ?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by