Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Writing 2 vectors within matrix

조회 수: 2 (최근 30일)
Miguel Cardoso
Miguel Cardoso 2020년 2월 19일
마감: MATLAB Answer Bot 2021년 8월 20일
Hi!
I have 2 vectores I where are written the indexes of a matrix M and J which are the values that I want to write on matrix M. Bellow I give a generic example, how can I do it automatically?
I=[1 1 1 2 2 2 3 3 3];
J=[2 4 7 3 1 4 9 6 4];
M=[2 4 7; 3 1 4; 9 6 4];
Hope you can help me!

답변 (1개)

fred  ssemwogerere
fred ssemwogerere 2020년 2월 19일
Hello, use reshape
M=reshape(J,[3,3])';
  댓글 수: 1
Miguel Cardoso
Miguel Cardoso 2020년 2월 19일
Thank you!

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by