필터 지우기
필터 지우기

Non Scalar Structures

조회 수: 20 (최근 30일)
Pankaj
Pankaj 2012년 2월 16일
답변: upol 2019년 1월 10일
Hi how can I save a non scalar structures. Again, I don't really know what a nonscalar structure is. I know mine is a nonscalar structure because save('filename',-struct,'structname) throws exception saying your structure is nonscalar.
I am trying to save a matrix of structures each structure has a structure inside it. does such programming increase runtime?

답변 (2개)

Jan
Jan 2012년 2월 16일
No, such programming does not necessarily increase the runtime. It can be a nice and efficient structure to represent the data. Even if it runs some seconds slower, a clear data representation can save weeks of debugging.
A non-scalar struct is something like this:
S(1,1).a = 1;
S(2,1).a = 2;
S(1,2).a = 3;
S(2,2).a = 4;
Now you have a [2x2] struct with the field 'a'. You cannot save this using the '-struct' flag, but by:
save('filename.mat', 'S');
  댓글 수: 6
Pankaj
Pankaj 2012년 2월 19일
Hi Jan, sorry for late reply.
The code you posted works. I was doing a mistake passing S without single quotes. The issue however is, that this still doesn't solve the problem. It takes Matlab more than half an hour to save the variable.The size of the structure in Bytes is close 5.75 GB.
Any suggestions? thanks
Jan
Jan 2012년 2월 19일
Writing 5.75 GB to a disk takes some time. Do you write the MAT file in the -7.3 format (see "help save", if this is not clear)? You cannot use the faster -v6 flag for SAVE, because even the compressed file is larger than 2GB already.
If your staruct has a lot of elements (millions), consider that each element has more than 100 Bytes overhead. E.g.:
[S(1:1e4).a] = deal(1); T.a(1:1e4) = 1; whos
You have 1200064 Bytes for S and 80176 bytes for T. A struct of fields consumes less memory than a field of structs. This matters the requirements of RAM, of disk-space when using SAVE and even the processing speed depends on the internal data representation.

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


upol
upol 2019년 1월 10일
Why this gives problem in C Coder. Error: Directly accessing field or property of nonscalar struct or object not supported for code generation.
s1=string({OPS_FLT(:).ACFT_ID})
s2=OPS_FLT(2).ACFT_ID
uuindex=find(strcmpi(s1,s2))
({OPS_FLT(:).ACFT_ID}) has already been defined as
OPS_FLT(1).ACFT_ID="apple"
OPS_FLT(2).ACFT_ID="orange"
I am trying to find orange from the array. It works in Matlab but not in C Coder

카테고리

Help CenterFile Exchange에서 Structures에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by