Extract data from a .mat file entred by the user

2 次查看(过去 30 天)
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

回答(1 个)

Stephen23
Stephen23 2020-9-2
编辑:Stephen23 2020-9-2
"...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 个评论
Cris LaPierre
Cris LaPierre 2020-9-2
编辑:Cris LaPierre 2020-9-4
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 2020-9-4
编辑:Stephen23 2020-9-5
Or, again assuming only one variable per file:
C = struct2cell(load(filename));
speed = C{1}.Data;

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Develop Apps Using App Designer 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by