Does Matlab use a QR or LU decomposition when solving a matrix equation?

2 vues (au cours des 30 derniers jours)
David
David le 13 Juil 2012
When Matlab computes A\B or A\b does it first compute the LU decomposition of A or the QR decomposition? I'm having accuracy issues and trying to compare my answers to those I get in C using LAPACK.
Thanks very much.
David

Réponse acceptée

Honglei Chen
Honglei Chen le 16 Juil 2012
There are actually some information regarding you question in the documentation
  1 commentaire
David
David le 16 Juil 2012
Thanks a whole lot. I feel a bit silly that I missed that when I scanned it.

Connectez-vous pour commenter.

Plus de réponses (1)

Paul Metcalf
Paul Metcalf le 16 Juil 2012
Modifié(e) : Paul Metcalf le 16 Juil 2012
I don't know the answer to your question, but you will need to provide more details to get a proper response to your question. For example:
  1. Is your matrix A square?
  2. What is the size/order of A?
  3. When using C/LAPACK, what data types have you cast for A?
  4. Are your results only slightly different or dramatically different?
MATLAB using DOUBLE arithmetic for all internal operations. If you are not using real64 types in C, then you might be accumulating quantisation errors...
  2 commentaires
David
David le 16 Juil 2012
Modifié(e) : David le 16 Juil 2012
1/ The matrix is square, so there's no least-squares solution or anything of that sort
2/ It's order 484
3/ A is double precision in C. On my architecture there's not much gain from single precision and it's not so big that I run into memory issues.
4/ The answers were pretty dramatically different, but it's that the LU decomposition I was using was screwing up. The QR was the right one. Sometimes slower is better!
Looks like the documentation said QR, so that's it. Thanks!
Paul Metcalf
Paul Metcalf le 18 Juil 2012
Glad you got it sorted. Out of curiosity, how long does your solution take?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Matrix Decomposition dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by