How to read the variable named sigma0 from multiple datas by using a loop ,where the datas are in h5 format?

1 次查看(过去 30 天)
Dataloc= '/home/ecsa_aleena/desktop/data cd(dataloc) Filename='/home/ecsa_aleena/desktop/data Dataset_name = 'science_data' Allfiles=dir(E06SCTL2A2023068_*.h5') Len =size(allfiles,1); Var=h5read(allfiles,'science_data/Sigma0');
Invalid expression. Check for missing multiplication operator, missing or unbalanced delimiters, or other syntax error. To construct matrices, use brackets instead of parentheses.
But the var command is showing error or is there other codes for creating a loop for finding the nanmean or mean of sigma0 for the multiple datas?

回答(1 个)

Cris LaPierre
Cris LaPierre 2023-5-16
MATLAB is case sensitive. Allfiles and allfiles are not the same thing.
Also, the first input to h5read must be a single file name, not a structure. If you have multiple files you would like to read in, I suggest looking into a filedatastore to load all the data into a single variable. You can see an example of how to use one to do this in this video from the Data Processing with MATLAB specialization on Coursera.
  2 个评论
Cris LaPierre
Cris LaPierre 2023-5-17
编辑:Cris LaPierre 2023-5-17
Add whatever processing you want to do to each file to your import function.
Here, that would mean having your import function read in the desired variable from the current file, then take the mean and assign that to the function output variable.
Write the code for a single file, then wrap it all up in a function, and use that as your import function.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Environment and Settings 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by