Reading uneven datasets from .mat file

1 vue (au cours des 30 derniers jours)
Sidharth Raut
Sidharth Raut le 11 Mai 2023
Commenté : Stephen23 le 11 Mai 2023
Hello all,
I'm trying to load datasets from .mat file in MATLAB. However, my datasets are not evenly distributed due to which I cannot import my entire dataset into MATLAB. My datasets are spilt in the intervals of 20 and 21. Is there a way to import the entire datasets at once into MATLAB?Please provide some suggestions to resolve this issue.
Thanks in advance!
  3 commentaires
Sidharth Raut
Sidharth Raut le 11 Mai 2023
Hello Chris,
I'm dealing with heavy file (3GB) and I can't attach it. But, I'm sharing the code that I'm using to read and write the datasets.
Data = load('testcase.mat');
N = 21:21:30215;
Tdata = repmat(Data.Frame21, [1 1 length(N)]);
for n = 1:length(N)
name = sprintf('Frame%d', N(n));
Tdata(:,:,n) = Data.(name);
end
The issue is that my datasets are not evenly distributed and after reading some sets (initially), MATLAB generates error stating frames cannot be found.
Stephen23
Stephen23 le 11 Mai 2023
Modifié(e) : Stephen23 le 11 Mai 2023
Rather than generating the fieldnames youself (including non-existent ones), why not just loop over the existing fieldnames?:
If the aim is simply to extract to a numeric matrix, you could use STRUCT2CELL and then CAT(3,..).
Or STRUCTFUN with a function that returns a scalar cell, then again CAT(3,...).

Connectez-vous pour commenter.

Réponses (1)

Stephen23
Stephen23 le 11 Mai 2023
Modifié(e) : Stephen23 le 11 Mai 2023
Assuming that:
  • the fields are in the required order (otherwise: you can sort them using ORDERFIELDS).
  • the MAT file contains only the data that you require (otherwise: you can specify the variables to import).
S = load('testcase.mat');
C = structfun(@(m){m},S);
A = cat(3,C{:})
  4 commentaires
Sidharth Raut
Sidharth Raut le 11 Mai 2023
Hello Stephen But can I load all frames at once? I only need frames (frame21 to frame 30215), will it be possible to import everything at once?
Stephen23
Stephen23 le 11 Mai 2023
"But can I load all frames at once? I only need frames (frame21 to frame 30215), will it be possible to import everything at once?"
The LOAD command i gave you in my last comment will import every variable whose name is "Frame" followed by some digits. That seems to match exactly what you describe. Did you try it? Did it not work for you?

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by