in the picture below you can find a message which describe what I need to fix in these two equations in the description.
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Matthew Worker
le 22 Juil 2021
Commenté : Rena Berman
le 16 Déc 2021
Theta_opt = inv(A + diag(zeta))*b;
2 commentaires
Image Analyst
le 15 Déc 2021
Original question, so you can see it after he deletes it.
in the picture below you can find a message which describe what I need to fix in these two equations in the description.
Theta_opt = inv(A + diag(zeta))*b;
Réponse acceptée
Swetha Polemoni
le 26 Juil 2021
Hi
As the warning clearly mentioned, try replacing inv(A + diag(zeta))*b with b/ inv(A + diag(zeta)). Because in Matlab inv(A)*b and b/A are computed differently and b/A has performance benefits over inv(A)*b. You can find it in the following link.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Fourier Analysis and Filtering 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!