Extract data from a .mat file entred by the user

2 views (last 30 days)
Hello team !
So i am making an app, where the user can load a .mat file of diffrent driving profiles. This means that the user file name can be anything. so we can not specify the name of the file to be loaded and use just
load('WLTC_Driving_Cycle.mat')
So the idea is, to use fileName to get the name what ever is the name of the .mat file, and then load it. here is my code
fileName = uigetfile('*.mat'); % Open window to select .mat file and get the name of the file
load(fileName) % Load the file
Speed = fileName.Data; % << The problem is here, dot call can not be used since "fileName" is char, so i cant import de the data
% Extract Data from the file
for i= 1 : length(speed)
s(1,i) = i-1; % time (s)
s(2,i) = speed(i); % Extract speed
end
As we can see, i am not sure how to extract the data from the file, one idea is to do this :
temp = load(fileName)
speed (1,:) = temp.fileName.Data % Matlab Throws an error since he considers fileName is path to get data

Answers (1)

Stephen23
Stephen23 on 2 Sep 2020
Edited: Stephen23 on 2 Sep 2020
"...one idea is to do this "
You just need to use dynamic fieldnames:
S = load(...);
S.('somefield')
You can get the fieldnames contained in the structure using fieldnames:
Note that your examples (in your question and various comments) do not reflect the content of the mat file, which contains three scalar structures, none of which have a Data field (all three have the same two fields: MCOS and timeseries).
  2 Comments
Cris LaPierre
Cris LaPierre on 2 Sep 2020
Edited: Cris LaPierre on 4 Sep 2020
Data is a property of the timeseries object.
Assuming the *.mat file only has a single variable in it, do the following
fileName = uigetfile('*.mat');
S=load(fileName);
fn = fieldnames(S);
speed = S.(fn{1}).Data
Stephen23
Stephen23 on 4 Sep 2020
Edited: Stephen23 on 5 Sep 2020
Or, again assuming only one variable per file:
C = struct2cell(load(filename));
speed = C{1}.Data;

Sign in to comment.

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!