How to read a structure array

Hi everybody, I'm trying to insert a structure array inside a for loop in order to allow the reading of each fiel automatically, by linking an index to the structure field. Is this possible or I can only access it by indicating the name of the field?
Thank, M

1 件のコメント

Jan
Jan 2012 年 3 月 29 日
It is always a good idea to post the currently existing code.

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

回答 (1 件)

Andrei Bobrov
Andrei Bobrov 2012 年 3 月 29 日

0 投票

pg
Mstruct = struct('a','gfjgfjf','b',[4 5 6],'c',{{7 8 9}})
nfield = fieldnames(Mstruct)
for j1 = 1:numel(nfield),disp(Mstruct.(nfield{j1}));end

カテゴリ

ヘルプ センター および File ExchangeStructures についてさらに検索

タグ

質問済み:

2012 年 3 月 29 日

Community Treasure Hunt

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

Start Hunting!

Translated by