필터 지우기
필터 지우기

Uploading .mat files that contain nested structs into a datastore

조회 수: 8 (최근 30일)
Dennan
Dennan 2024년 2월 20일
댓글: Matt J 2024년 2월 21일
I would like to upload .mat file into a datastore that contains nested structs. Like so...
TestData.Unit1.Parameter 1
TestData.Unit1.Parameter 2
TestData.Unit2.Parameter 1
TestData.Unit2.Parameter 2
When I try to upload this into a datastore I cannot read the content of the fields inside the nested struct. The size of the .mat files are enormous and take a really long time to load one parameter. How do I accomplish this while still using datastore or something of the like? I know we are supposed to use fileDataStore to create the custom read function but the read function I created only displays the first level of the structs.
  댓글 수: 2
Matt J
Matt J 2024년 2월 20일
편집: Matt J 2024년 2월 20일
When you say "upload" do you truly mean that the datastore reads from files stored on a remote computer? If so, maybe the reading time is predominantly due to the remote connection, rather than the file size.
Dennan
Dennan 2024년 2월 20일
It is files stored on a network of computers. So there is no way to "point" to the data and call specific parameters as needed?

댓글을 달려면 로그인하십시오.

채택된 답변

Catalytic
Catalytic 2024년 2월 20일
편집: Catalytic 2024년 2월 20일
I think the wisest course would be to reorganize your data and assign each "Unit" to its own separate .mat file.
  댓글 수: 3
Dennan
Dennan 2024년 2월 20일
The data is write protected
Matt J
Matt J 2024년 2월 20일
It wouldn't matter if the data is write-protected. You could read the data, reorganize it, and copy the reorganized data somewhere controlled by you and where you would have full read/write acess.
If for some reason you can't do that, so be it. However, one of the upsides of @Catalytic's suggestion is that if you split the data this way, you could shuffle the Parameter instances. In the form you have things now, the shuffle() command can only vary the the read-out order of the files, not the order of the Parameters within the files.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Matt J
Matt J 2024년 2월 20일
This example shows how to use a fileDataStore to read partial data from a .mat file
I might modify their example and use a matfile object to read the data without actually loading the entire file.
  댓글 수: 7
Stephen23
Stephen23 2024년 2월 21일
편집: Stephen23 2024년 2월 21일
"How do you get to the actual data within the struct?"
Based on what you show in your comment, perhaps something like this:
S = read(fds);
S.Para1
S.Para2
Matt J
Matt J 2024년 2월 21일
Based on what you show in your comment, perhaps something like this:
Yes, but the OP would like the read() operation to return this directly.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Workspace Variables and MAT-Files에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by