Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
regarding save in matlab
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hi
When i used the save function, 73113 values get saved.
Is there any way to change the number of values that get saved?
Any help would be appreciated.
0 Commenti
Risposte (2)
Grzegorz Knor
il 20 Mar 2012
Use save with optional arguments:
save('your_file', 'first_variable', 'second_variable', ... )
see also doc:
0 Commenti
Andreas Goser
il 20 Mar 2012
When simply using save, it saves all existing variables. You can determine how many those are by using WHO / WHOS commands.
0 Commenti
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!