Matrix Operation and decomposition
1 view (last 30 days)
Show older comments
Murali Krishna AG
on 25 Nov 2020
Edited: Bruno Luong
on 25 Nov 2020
Let A=80*80 matrix ,How to find matrices A^(-1/2) and A^(1/2)
0 Comments
Accepted Answer
Bruno Luong
on 25 Nov 2020
Edited: Bruno Luong
on 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 Comments
More Answers (0)
See Also
Categories
Find more on Logical in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!