Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
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?

Antworten (1)

Cris LaPierre
Cris LaPierre am 16 Mai 2023
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 Kommentare
amrutha anna
amrutha anna am 17 Mai 2023
So while using h5read,how can i add 52 datas altogether,as i need the mean of these 52 datas? Is there any code for that
Cris LaPierre
Cris LaPierre am 17 Mai 2023
Bearbeitet: Cris LaPierre am 17 Mai 2023
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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Environment and Settings finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by