Hey,
If I use the load function by matlab I normally end up doing something like this:
temp = load('filename.mat');
realData = temp.VarName;
clear temp
or
realData = load('filename.mat');
realData = realData.VarName;
is any of this methods superiour to the other, especially in terms of memory usage? Or is there a more direct approach to avoid this temporary struct?
Thx Thomas