problem to save structura in .mat file
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
a.w=1;
a.r="ff";
a.v=3;
a.s="a.tst";
save(a.s,'-struct','a')
a=load("a.tst","-mat");
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1407089/image.png)
i see 1X1 struct and not as original
3 Kommentare
Stephen23
am 9 Jun. 2023
"i see 1X1 struct and not as original"
The original is also a 1x1 struct. They look exactly the same to me:
a.w = 1;
a.r = "ff";
a.v = 3;
a.s = "a.tst"
save(a.s,'-struct','a')
clearvars
b = load("a.tst","-mat")
Antworten (0)
Siehe auch
Kategorien
Mehr zu Structures 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!