Azzera filtri
Azzera filtri

How to save and append variable into a matlab file?

24 visualizzazioni (ultimi 30 giorni)
I would like to save variable "i" in a mat file "paxt.mat". This is to be saved in the current directory.
The varaible "i" varies with each loop hence need to append it.
I tried :
save(fullfile(pwd,'paxt4.mat'),'i','-append'); % OR
save('paxt4.mat','i','-append');
Error using save
Unable to write file D:\..\paxt.mat: No such file or directory.
Both of these does not work. I do not undestand what is wrong.
Any help will be greatly appriciated.
Thanks in advance

Risposta accettata

Chunru
Chunru il 20 Lug 2022
Modificato: Chunru il 20 Lug 2022
You can use mat-file objuect. doc matfile for mor details.
% work with the .mat file using matfile object
matobj = matfile('paxt4.mat', 'Writable', true);
matobj.i=[];
for k=1:5
i = randn(1,1);
matobj.i = [matobj.i i];
end
matobj.i
ans = 1×5
-0.2966 -0.4702 -1.5783 -0.8970 -0.9910
whos('-file', 'paxt4.mat')
Name Size Bytes Class Attributes i 1x5 40 double

Più risposte (0)

Categorie

Scopri di più su Workspace Variables and MAT-Files in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by