split a diagonal matrix

7 vues (au cours des 30 derniers jours)
Elysi Cochin
Elysi Cochin le 18 Mar 2019
Commenté : Jos (10584) le 18 Mar 2019
v = [2 1 4];
D = diag(v)
Having a diagonal matrix, i wanted to split the diagonal matrix as below
M1 = [
2 0 0
0 0 0
0 0 0]
M2 = [
0 0 0
0 1 0
0 0 0]
M3 = [
0 0 0
0 0 0
0 0 4]
working for any dimension diagonal matrix
  1 commentaire
Jos (10584)
Jos (10584) le 18 Mar 2019
What do you mean by "working for any dimension diagonal matrix" ?
Any number of elements in V? In that case, see my answer below.

Connectez-vous pour commenter.

Réponse acceptée

KSSV
KSSV le 18 Mar 2019
v = [2 1 4];
nx = length(v) ;
M = zeros(nx,nx,nx) ;
for i = 1:nx
M(i,i,i) = v(i) ;
end

Plus de réponses (1)

Jos (10584)
Jos (10584) le 18 Mar 2019
Having a vector V with any number of elements, this does the job:
V = [2 1 4]
n = numel(V) ;
M = zeros(n,n,n) ;
M(linspace(1, n^3, n)) = V
If you have a diagonal matrix D, use V = diag(D) first.

Catégories

En savoir plus sur Operating on Diagonal 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