change array into matrix
조회 수: 11 (최근 30일)
이전 댓글 표시
How to write a 4 values in rectangular grid a=[8 4 6 2]
it will become
a=
8 4
6 2
댓글 수: 0
채택된 답변
Mischa Kim
2014년 2월 1일
편집: Mischa Kim
2014년 2월 1일
b = reshape(a,2,2)
댓글 수: 3
Mischa Kim
2014년 2월 1일
Is this another question or are you confirming that the command does what you need it to do?
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!