How can I use the save function in matlab to save a variable in the workspace, which is actually a two dimensional table, into an existing .dat file from which I previously loaded that variable?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
load ('datos22.dat', '-mat');
for i=1:2:43
datos(:,i)=datos(:,i)+6;
end
save('datos.dat',datos,' -dat')
2 Commenti
Ramnarayan Krishnamurthy
il 28 Dic 2017
This answer may be useful if you are want to update an existing variable in the mat file:
Risposte (0)
Vedere anche
Categorie
Scopri di più su Workspace Variables and MAT Files in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!