How to save into a particular variable space in .mat file?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Viswanath Hariharan
am 27 Nov. 2017
Kommentiert: KL
am 27 Nov. 2017
Say A = cell(100,1) existing as a variable in the .mat file. I want to add 100 more elements to A from my main program i.e. the variable space A(101:200) in the .mat file. How do I accomplish this?
0 Kommentare
Akzeptierte Antwort
KL
am 27 Nov. 2017
The same command which I just gave you for your other question. That's why you should read the link!
A = rand(100,1);
save('dummy.mat','A')
mobj = matfile('dummy.mat','Writable', true);
mobj.A = [mobj.A; rand(100,1)];
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu File Operations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!