Save and load in same file
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
lotus whit
el 25 de Dic. de 2017
Editada: lotus whit
el 26 de Dic. de 2017
Could please help me , i have several m1.mat,m2.mat,......mn.mat ; i add new row for m1.mat then save if by typing save m1 or save Workspace , then i repeat these steps for m2 , but when i return back to use m1 , i found it has old values before changing .
0 comentarios
Respuesta aceptada
Walter Roberson
el 25 de Dic. de 2017
ds = load('m1.mat');
ds.m1(end+1,:)=newdata;
save('m1.mat','ds','-struct')
3 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Structures en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!