HOW CAN CREATE A MATRIX FROM A SINGLE ROW?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have 12 elements distributed on a single row, i've to put them on a 3x4 matrix, how i do that?
댓글 수: 0
채택된 답변
Arif Hoq
2022년 3월 13일
use reshape function.
A=randi(100,1,12)
output=reshape(A,3,4)
댓글 수: 1
John D'Errico
2022년 3월 13일
With only the caveat that the solution offerd by @Arif Hoq puts the elements into the matrix going down the columns. If @simone zappalà wanted to put the elements going across rows from the original vector, then this subtle change would do the trick:
A = [99 27 87 54 85 99 10 14 94 9 80 42];
output=reshape(A,4,3).'
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!