필터 지우기
필터 지우기

making a 4 x 3 matrix with elements from a 3x7 matrix

조회 수: 5 (최근 30일)
Brandon
Brandon 2023년 9월 26일
댓글: Brandon 2023년 9월 26일
m1 is 3x7
m2 is 4x3
need to pull 4 columns from m1 to make the 4 rows for m2

채택된 답변

David Goodmanson
David Goodmanson 2023년 9월 26일
편집: David Goodmanson 2023년 9월 26일
Hi Brandon,
m1 = rand(3,7)
m2 = m1(:,[1 3 4 5]).'
m1 =
0.0357 0.6787 0.3922 0.7060 0.0462 0.6948 0.0344
0.8491 0.7577 0.6555 0.0318 0.0971 0.3171 0.4387
0.9340 0.7431 0.1712 0.2769 0.8235 0.9502 0.3816
m2 =
0.0357 0.8491 0.9340
0.3922 0.6555 0.1712
0.7060 0.0318 0.2769
0.0462 0.0971 0.8235
for example, where the columns have been indicated. The .' takes the transpose, and it has to be used if m1 has any complex values, because ' takes the complex conjugate transpose.
  댓글 수: 1
Brandon
Brandon 2023년 9월 26일
Thank you, I didn't know that .' took the transpose.

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by