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 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
load ('datos22.dat', '-mat');
for i=1:2:43
datos(:,i)=datos(:,i)+6;
end
save('datos.dat',datos,' -dat')
2 comentarios
Ramnarayan Krishnamurthy
el 28 de Dic. de 2017
This answer may be useful if you are want to update an existing variable in the mat file:
Respuestas (0)
Ver también
Categorías
Más información sobre Workspace Variables and MAT Files en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!