create an array of single struct

16 ビュー (過去 30 日間)
Aditya Jain
Aditya Jain 2015 年 11 月 9 日
コメント済み: Guillaume 2015 年 11 月 9 日
structElement = struct('a1','', 'a2', '', 'a3', '', 'a4', '');
s1 = repmat(structElement, [1,1]);
The above code gives a 1x1 struct
s2 = repmat(structElement, [2,1]);
The above code results in a 2x1 struct
If I do s2(1) it returns a struct
If I do s1(1) it returns a1.
How can I create s1, such that s1(1) will give me back a struct. Basically I want to create an array of single struct.
  2 件のコメント
Adam
Adam 2015 年 11 月 9 日
編集済み: Adam 2015 年 11 月 9 日
Both those syntaxes return the full struct. They do in Matlab R2015b that I am using.
s1 = structElement;
would do though. The repmat instruction is redundant.
Guillaume
Guillaume 2015 年 11 月 9 日
I'm fairly certain they've done so in every version of matlab (barring any bug).
It would never make any sense for an index to return a field of a structure. Particularly since everything in matlab, including scalar structures, is always an array.

サインインしてコメントする。

採用された回答

Guillaume
Guillaume 2015 年 11 月 9 日
"If I do s1(1) it returns a1." No, it also returns a structure.
Both s1 and structElement are arrays of a single struct:
>>s1(1)
ans =
a1: ''
a2: ''
a3: ''
a4: ''
>>size(s1)
ans =
1 1
>>size(structElement)
ans =
1 1
Everything in matlab is an array. Scalars (numbers, structs, objects, etc.) are stored as array of size 1x1
  3 件のコメント
Walter Roberson
Walter Roberson 2015 年 11 月 9 日
s2 = repmat({structElement}, [2,1]);
Guillaume
Guillaume 2015 年 11 月 9 日
You can create cell arrays of structures the same way you create cell arrays of numbers, by plain assignment, using arrayfun / cellfun, using num2cell, etc.
s = struct('a', {1 2 3 4 5}, 'b', ''); %creates a 1x5 array of struct
c = num2cell(s); %convert matrix to cell array
Another way:
s = struct('a', '', 'b', '');
c = cell(2, 5);
c(:) = {s};
However, if all the structures have the same fields, I don't see the point of storing them in a cell array.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by