parsave

Version 1.2.0.0 (1,06 KB) von Philip
This function allows you to save variables inside a parfor loop.
865 Downloads
Aktualisiert 16. Mär 2011

Lizenz anzeigen

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

Zitieren als

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

Kompatibilität der MATLAB-Version
Erstellt mit R2010b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Parallel for-Loops (parfor) finden Sie in Help Center und MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.2.0.0

Edited description.

1.0.0.0