load function sometimes alters structure name in the Workspace
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Jon-Danilo Kortram
am 21 Jul. 2020
Bearbeitet: Stephen23
am 21 Jul. 2020
I am encountering a weird phenomena where using the load('filename') function to load a structure, alters the structure name in the workspace. This does not occur everytime, but I observed it on multiple occasions:
Example:
close all
clear variables
load('TM24_w')
results in a structure in my workspace named: "TM242_w"
It does load in the correct structure with the correct fields and values but the workspace name is wrong.
Has anyone ever encountered this and is there a solution?
5 Kommentare
Akzeptierte Antwort
Walter Roberson
am 21 Jul. 2020
When you load a mat file without output on the load command, the variable names will be the same as the names inside the mat and not what the file name happens to be.
3 Kommentare
Stephen23
am 21 Jul. 2020
Bearbeitet: Stephen23
am 21 Jul. 2020
"What do you mean by the "names inside the mat"?"
.mat files store one or more variables (or fields of a structure). Variables have names.
The name of the file is irrelevant.
Note that the MATLAB documentation recommends loading into an output variable.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Workspace Variables and MAT Files 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!