How to create a 4 dimensional array??
이전 댓글 표시
This is just a general question because I can't find it anywhere, but does anyone know how to create a 4-D array? What would the basic code be for it or just a basic example of one would be great!
채택된 답변
추가 답변 (1개)
the cyclist
2011년 12월 1일
편집: John Kelly
2015년 2월 26일
Here is a trivial example:
>> A = zeros(2,3,5,7);
>> A(1,2,1,2) = 6;
>> A(1,1,5,6) = 5;
>> A(2,1,1,:) = pi;
댓글 수: 3
Jan
2011년 12월 1일
This is, as requested, the basic code. +1
erfan vahdat
2020년 7월 28일
thanks
Precious Chukwuezi
2023년 12월 30일
thanks
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!