Merging rows of a matrix into a number

조회 수: 1 (최근 30일)
Aleem Andrew
Aleem Andrew 2021년 10월 27일
답변: Ive J 2021년 10월 27일
If you have the 3*1 matrix
C = [345
679
158]
and you want to change it to the 3*3 matrix (or vice versa)
C = [3 4 5
6 7 9
1 5 8]
so that you can for example sort it in descending order of the columns, how would you do this? Thank you.
  댓글 수: 2
Image Analyst
Image Analyst 2021년 10월 27일
@Ive J, can you put your Answer down below in the Answers section rather than up here in comments that is used to ask the original poster for clarification? You can also get credit for your answer down there if the poster accepts your answer and/or votes for it.
Ive J
Ive J 2021년 10월 27일
@Image Analyst sure, tnx!

댓글을 달려면 로그인하십시오.

채택된 답변

Ive J
Ive J 2021년 10월 27일

추가 답변 (1개)

Jan
Jan 2021년 10월 27일
편집: Jan 2021년 10월 27일
C = [345
679
158];
D = rem(floor(C ./ [100, 10, 1]), 10)
D = 3×3
3 4 5 6 7 9 1 5 8

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by