Convert row or coloumn matrix into rowXcoloumn matrix

조회 수: 1 (최근 30일)
kamal
kamal 2019년 9월 26일
댓글: KALYAN ACHARJYA 2019년 9월 26일
Hi
I need to convert row matrix
row_matrix.PNG
into
changed.PNG
How to convert like this. I am struck with logic.

채택된 답변

David K.
David K. 2019년 9월 26일
I would do it as such:
P = 1:10;
out = reshape(P,[2,5]);
out = out'; % Take transpose

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

제품


릴리스

R2014b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by