parsave

Versione 1.2.0.0 (1,06 KB) da Philip
This function allows you to save variables inside a parfor loop.
859 download
Aggiornato 16 mar 2011

Visualizza la licenza

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

Cita come

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

Compatibilità della release di MATLAB
Creato con R2010b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Parallel for-Loops (parfor) in Help Center e MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
1.2.0.0

Edited description.

1.0.0.0