How do I save a .mat file and .py file automatically with a 'variable's' value as filename using MATLAB?

2 次查看(过去 30 天)
Eg: If I have a 'gradient'=20 and 'number' = 10. How to save a .mat file and .py file with a filename 20_10.

采纳的回答

Stephen23
Stephen23 2018-8-30
G = 20;
N = 10;
F = sprintf('%d_%d.mat',G,N);
save(F,...)

更多回答(1 个)

ahmed nebli
ahmed nebli 2018-8-30
you can use: save('filename.mat','X'); %where filename is the name of file and X is the variable u need to save & same for the .py file

类别

Help CenterFile Exchange 中查找有关 Workspace Variables and MAT-Files 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by