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

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 Exchange에서 Structures에 대해 자세히 알아보기

질문:

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