How to enhance the performance of Matalb's function sqrtm?
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I have code that involves computing the matrix square root using the
sqrtm
function and when anlyzing the code performance it turns out that this function takes about 35% of the total time of the code?
Is there anyway I can make it runs more effeciently?
Thanks and my appologies if this question appears repeated!
0 Commenti
Risposte (1)
Christine Tobler
il 23 Nov 2021
Not in general. You might be able to find a cheaper but less accurate way to compute this, but if that's acceptable would depend on what kinds of inputs you have, and what you then do with the outputs.
If the input to sqrtm is always a symmetric positive definite matrix, you might look into whether the Cholesky factor could work instead of the matrix square root, this would be cheaper to compute.
0 Commenti
Vedere anche
Categorie
Scopri di più su Linear Algebra 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!