saving in different folders
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi
This is a statement in a for loop
[f_estimate(i), freqconf(i), z_estimate(i), dampconf(i)]
How do I save each of the variables in different folders?
0 Commenti
Risposta accettata
Angelo Yeo
il 19 Giu 2023
save(fullfile(basepath, 'folder1', 'f_estimate.mat'), 'f_estimate')
save(fullfile(basepath, 'folder2', 'freqconf.mat'), 'freqconf')
% etc ...
0 Commenti
Più risposte (1)
Ayush Kashyap
il 19 Giu 2023
Hi Indrani,
As per my knowledge, you can utilize the "save" and "fullfile" functions provided by matlab inside your for loop as follows:
save(fullfile(<folder path>, ['f_estimate_' num2str(i) '.mat']), 'f_estimate', '-v7.3');
You can also refer to this documentation for more details: Matlab Save Function
0 Commenti
Vedere anche
Categorie
Scopri di più su Solar Power in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!