Load multiple files one by one into a subfolder or Extract data from strut

2 次查看(过去 30 天)
Hi,
How can I load multiple files from a subfolder without merging them into a strut. ?
or
I have a .mat files in a folder I have loaded them using the command below.
matpath = 'C:..\..sol_file\';
matfiles = dir(fullfile(matpath ,'*.mat'));
Please how can I extract the files separately ?
  6 个评论
Stephen23
Stephen23 2023-10-19
编辑:Stephen23 2023-10-19
You can extract the imported file data into its own structure array, which will make the data easier to access. This assumes that each scalar structure in the DATA field has exactly the same fields (which so far you have not told us).
Given your structure S, after the file importing loop do this:
Z = [S.data];
After that you can trivially use indexing to access the data, e.g. for the 2nd file:
S(2).name % filename
Z(2).helloworld % the fields which so far you have not told us what they are called
Z(2).otherfields
Z(2).etcetcetc
Do NOT try to magically create all of that data as separate variables in the workspace. There be dragons.

请先登录,再进行评论。

采纳的回答

Voss
Voss 2023-10-19
matpath = 'C:..\..sol_file\';
matfiles = dir(fullfile(matpath ,'*.mat'));
full_file_names = fullfile(matpath,{matfiles.name});
for n = 1:numel(matfiles)
matfiles(n).data = load(full_file_names{n});
end
Now matfiles(1).data contains the data loaded from the 1st mat-file, matfiles(2).data contains the data loaded from the 2nd mat-file, and so on.
  6 个评论
Walter Roberson
Walter Roberson 2023-10-19
format long g
val = 0.001
val =
0.001
fprintf('%.999g\n', val)
0.001000000000000000020816681711721685132943093776702880859375
val2 = val * (1-eps)
val2 =
0.001
fprintf('%.999g\n', val2)
0.00099999999999999980397624721462079833145253360271453857421875
MATLAB does not store numeric values in decimal. The closest representable value to 0.001 is the one shown above. Why should it create a variable name xx_001 instead of xx followed by that string of digits?
Notice that val2 displays the same as val, but has a slightly different internal value and is not the closest representable value to 1/1000 (it is the second-closest) . If that were the value in the variable, then should xx_001 still be the created variable or should it be xx followed by that long string of digits for val2 ? What is the rule here for how much values should be rounded off in creating the name of the variable?

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Variables 的更多信息

产品


版本

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by