フィルターのクリア

saving in different folders

3 ビュー (過去 30 日間)
Indrani
Indrani 2023 年 6 月 19 日
回答済み: Ayush Kashyap 2023 年 6 月 19 日
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?

採用された回答

Angelo Yeo
Angelo Yeo 2023 年 6 月 19 日
save(fullfile(basepath, 'folder1', 'f_estimate.mat'), 'f_estimate')
save(fullfile(basepath, 'folder2', 'freqconf.mat'), 'freqconf')
% etc ...

その他の回答 (1 件)

Ayush Kashyap
Ayush Kashyap 2023 年 6 月 19 日
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

カテゴリ

Help Center および File ExchangeVariables についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by