Change file matlab workspace name as the folder name

2 次查看(过去 30 天)
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.

采纳的回答

dpb
dpb 2021-2-27
" '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 个评论
EMILIO BASTA
EMILIO BASTA 2021-2-27
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' ?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by