Filter löschen
Filter löschen

Loading a Variable with its Original Format

2 Ansichten (letzte 30 Tage)
Rightia Rollmann
Rightia Rollmann am 11 Jan. 2017
Bearbeitet: Stephen23 am 11 Jan. 2017
B is double. When I load B, this function put it in a struct format. How can I load B with double format?
C = load( ‘A.mat’, ‘B’);

Akzeptierte Antwort

Stephen23
Stephen23 am 11 Jan. 2017
Bearbeitet: Stephen23 am 11 Jan. 2017
C = load( A.mat, B);
B = C.B;
Note that you do not actually need to assign the variable B. Instead you can simply access the structure field whenever you need to:
mean(C.B)
Although some people might tell you to do this:
load( A.mat, B);
in fact this is a very bad way to load data. It means that variables magically "poof" into existence in the workspace. Much better is to load into a structure.

Weitere Antworten (0)

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!

Translated by