Re: [eigen] Re: LU precision tuning |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Re: LU precision tuning
- From: Márton Danóczy <marton78@xxxxxxxxx>
- Date: Mon, 11 May 2009 17:18:09 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :from:date:message-id:subject:to:content-type :content-transfer-encoding; bh=E2/viib0qWfcSce7KQIcw87zWC06/8LaOBySFrENYUk=; b=mtON65BeXWS5iVPrUD2AppjsQ9dC0hR3RKF0JV4PM948EuPz/GwQHpxhrvgnJNTG7x UBUY0nz1GkrsSxwCoa2VJPRbRkFAVUyvObam3GdktY3OcpTvGRr3PDpDoUyplvz/SWbi 6BncXq3THom8Tjmo0JbNUTvqfPMshG+MM4+bg=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; b=c8Zgcdkxp3XdHGhyQlxuihDG4AtJhDhO/CqFPlGRorzpOrWYgvol+WLGP6VPU5xW3s uVFnzbz0fGO5n3JVEP4k2frQ4vmxMGI5RNIdsQAV/jkzxM713p+Je+BFmZ8zr0hL9W9U O6NHxxJ1+hGtwn/3m4C2dQOaaDiH+7meu69E8=
> Aha, the misunderstanding comes from an error in our current QR.
>
> Normally, in the QR decomposition, Q is always square, it's R that
> adapts to the rectangular size.
> http://en.wikipedia.org/wiki/QR_decomposition#Rectangular_matrix
>
> But here in our QR, it's Q that adapts to the rectangular size.
>
> Another problem --> so i wouldn't currently consider it reliable for
> non-square matrices.
Not necessarily. There's two versions of QR, in MATLAB's
implementation it's qr(A) or qr(A,0), where the second is called
"economy-size" QR, or "thin QR" by Golub & van Loan, see the wikipedia
page. The second is useful when looking for the least-squares solution
of overdetermined equations, i.e. when A is m x n and m>n. In this
case, using a full size Q (m x m) is a waste of memory, it's better to
have Q m x n and R n x n. If A is square or m<n, however, Q should be
m x m and R m x n.
Marton