parsave

バージョン 1.2.0.0 (1.06 KB) 作成者: Philip
This function allows you to save variables inside a parfor loop.
ダウンロード: 859
更新 2011/3/16

ライセンスの表示

Unlike MATLAB's solution, the variables are saved with their variable names'. You must call this function for each variable you want to save, but the function will not overwrite previous mat files.

function parsave(fname,data)

var_name=genvarname(inputname(2));
eval([var_name '=data'])

try
save(fname,var_name,'-append')
catch
save(fname,var_name)
end

引用

Philip (2024). parsave (https://www.mathworks.com/matlabcentral/fileexchange/30778-parsave), MATLAB Central File Exchange. 取得済み .

MATLAB リリースの互換性
作成: R2010b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersParallel for-Loops (parfor) についてさらに検索

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.2.0.0

Edited description.

1.0.0.0