Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

Writing 2 vectors within matrix

1 Ansicht (letzte 30 Tage)
Miguel Cardoso
Miguel Cardoso am 19 Feb. 2020
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
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!

Antworten (1)

fred  ssemwogerere
fred ssemwogerere am 19 Feb. 2020
Hello, use reshape
M=reshape(J,[3,3])';

Diese Frage ist geschlossen.

Community Treasure Hunt

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

Start Hunting!

Translated by