Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个非常简单的问题。我了解如何创建一个简单的结构,但现在我想知道如何在一个结构中创建一个结构,如果你愿意的话,一个子结构。我不确定这是否可行,因为我还没有真正看到任何示例,但如果有人可以展示如何做到这一点,将不胜感激。
最简单的方法
a.b.c = 1; a.b.d = 'something else';
你明白了……
更正式地说,
a = struct( 'b', struct( 'c', [1 2 3], 'd', {{4}} ),... 'subStruct', struct( 'e', [], 'f', 'string' ) );
您可以struct在内部使用struct- 没问题。
struct