Matlab structure of struct
조회 수: 2(최근 30일)
표시 이전 댓글
Hi!
I'd like to create structures and store them, but I don't know how to do it. For example, for a function, we write something like
function f=MyFunction(arg1,...,argN)
...
end
and then we write the different operations. This allows us to write MyValue=MyFunction(...). I'd like to do the same for structures, something like MyObject=MyStruct(...). Could someone give me a reference document which explains how to do this for structures please? So far, the only thing I found is how to create structures from the command window. Thanks!
채택된 답변
Jan
2021년 11월 12일
MyStruct = cell2struct(cell(2, 1), {'field1'; 'field2'})
Now the fields exist, but contain empty matrices only.
추가 답변(1개)
Image Analyst
2021년 11월 12일
Not sure what you mean. You can call the function whatever you want and it can take in and return whatever you want. If you want to create a custom structure, there is already a function called struct() to do that.
참고 항목
범주
Find more on Structures in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!