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

1 Ansicht (letzte 30 Tage)
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?

Akzeptierte Antwort

Matt J
Matt J am 9 Dez. 2019
B=kron(A,eye(n))
  1 Kommentar
Shikhar Shah
Shikhar Shah am 9 Dez. 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!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Produkte


Version

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by