How to create positive semidefinite matrix from random value ?
29 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Waqar Ahmed
il 8 Gen 2021
Risposto: Walter Roberson
il 8 Gen 2021
I form a matrix A in matlab as
A=rand(50);
I want to know how to make symmetric matrix using equation
A=0.5 *(A+A');
but how can I make it positive semidefinite matrix?
0 Commenti
Risposta accettata
Walter Roberson
il 8 Gen 2021
A = rand(50);
A = 0.5 *(A+A');
issymmetric(A)
d = eig(A)
all(imag(d) == 0 & d >= 0)
APos = A'*A;
issymmetric(APos)
d = eig(APos)
all(imag(d) == 0 & d >= 0)
0 Commenti
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!