Matrix Operation and decomposition
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Murali Krishna AG
il 25 Nov 2020
Modificato: Bruno Luong
il 25 Nov 2020
Let A=80*80 matrix ,How to find matrices A^(-1/2) and A^(1/2)
0 Commenti
Risposta accettata
Bruno Luong
il 25 Nov 2020
Modificato: Bruno Luong
il 25 Nov 2020
Just straight as-it-is syntax
A^(1/2)
A^(-1/2)
or
sqrtm(A)
inv(sqrtm(A)) % sqrtm(inv(A))
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!