Reading uneven datasets from .mat file

1 次查看(过去 30 天)
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 个评论
Sidharth Raut
Sidharth Raut 2023-5-11
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 2023-5-11
编辑:Stephen23 2023-5-11
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,...).

请先登录,再进行评论。

回答(1 个)

Stephen23
Stephen23 2023-5-11
编辑:Stephen23 2023-5-11
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 个评论
Sidharth Raut
Sidharth Raut 2023-5-11
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 2023-5-11
"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?

请先登录,再进行评论。

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by