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
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 Exchange에서 Structures에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!