Fastest & most effective way to create this matrix:

1 vue (au cours des 30 derniers jours)
Eitan
Eitan le 19 Déc 2014
Commenté : Sean de Wolski le 19 Déc 2014
Hey there, I have been searching for hours for a good solution & not found one yet. I need to create this matrix (6X6):
A = 0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 0 0 0
0 0 0 1 2 3
0 0 0 4 5 6
0 0 0 7 8 9
It must be in an effective & short way. Thank you if anyone can help with this one.

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 19 Déc 2014
one way
a =[1 2 3
4 5 6
7 8 9];
out = kron([0 0 ; 0 1],a);
  1 commentaire
Eitan
Eitan le 19 Déc 2014
Thank you, Amazing speed!

Connectez-vous pour commenter.

Plus de réponses (1)

Orion
Orion le 19 Déc 2014
Modifié(e) : Orion le 19 Déc 2014
clear A;
A(4:6,4:6) = reshape(1:9,3,3)'
  2 commentaires
Eitan
Eitan le 19 Déc 2014
Thank you! I actually used that code because it looks shorter. you guys are great!
Sean de Wolski
Sean de Wolski le 19 Déc 2014
I'd expect this to be the fastest way to do this.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by