Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

could anyone tell me how to save the values while the code is getting executed

1 Ansicht (letzte 30 Tage)
Prabha Kumaresan
Prabha Kumaresan am 1 Jun. 2018
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
could anyone tell me how to save the values while the code is getting executed

Antworten (2)

Anton Semechko
Anton Semechko am 1 Jun. 2018
save('FileName.m','name_of_variable_you_want_to_save')

Aakash Deep
Aakash Deep am 1 Jun. 2018
Use save command to save the current value of the variable.
save filename variable1
This will create .mat file (for this, filename.mat) in your current working directory. If you want to store multiple variables in a single file, you can do it by adding variable name in the same command.
save filename var1 var2 var_n
It is good when the value of the variable is changing.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by