How to replace elements of a matrix with the scaled identity?

1 vue (au cours des 30 derniers jours)
Shikhar Shah
Shikhar Shah le 9 Déc 2019
Commenté : Shikhar Shah le 9 Déc 2019
I have some arbitrary square matrix, for example:
A = [ 1 2 3; 4 5 6; 7 8 9 ];
I would like to replace each element with its scalar value multiplied by the identity of some size n. For example, taking n=2, I want to get:
B = [ 1 0 2 0 3 0;
0 1 0 2 0 3;
4 0 5 0 6 0;
0 4 0 5 0 6;
7 0 8 0 9 0;
0 7 0 8 0 9 ];
Since the size n is constant, the matrix B is guaranteed to have consistent dimensions. Is there a quick way to do this without having to loop over the elements of A and find the corresponding indices of B to place the identity?

Réponse acceptée

Matt J
Matt J le 9 Déc 2019
B=kron(A,eye(n))
  1 commentaire
Shikhar Shah
Shikhar Shah le 9 Déc 2019
This makes a lot of sense. It is useful that I can use any matrix for the second argument of kron(). Thank you so much for your quick and simple answer!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by