Display 3-d Structure Array

I've set up a 3-dimensional structure array. How do I go about plotting/displaying all 3 dimensions of the array? I've tried the disp function, but I only show the structure column headings.

1 件のコメント

Philip Caplan
Philip Caplan 2015 年 4 月 17 日
Can you provide a small sample of your structure array? From my understanding it sounds like if you have:
>> field = 'f';
>> value = cell(2,2,2);
and then fill the contents of value and create a structure array:
>> s = struct(field,value);
then typing
>> s.f
will display all the contents of the 3d structure array.

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

回答 (0 件)

カテゴリ

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

質問済み:

2015 年 4 月 16 日

コメント済み:

2015 年 4 月 17 日

Community Treasure Hunt

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

Start Hunting!

Translated by