Can any body help me to creat .mat file in current folder ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Onur PEKER
am 9 Mär. 2014
Kommentiert: Onur PEKER
am 12 Mär. 2014
When I call one function which is obtained by me, I want to create it in current folder. I am using 'save ' function but it has problem that, it is memorised not only my neural network function but also all of function variable . Is there any choose out of 'save' function to create .mat file ?
Akzeptierte Antwort
Nitin
am 10 Mär. 2014
I suppose you only want to save a specific variable instead of everything:
If you would like to save only variable, a:
a = rand(1,10)
save('a_save.mat','a')
If you would like to save all variables:
filename = 'save_all.mat';
save(filename)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!