Re: [eigen] request for comments / help |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: Helmut Jarausch <jarausch@xxxxxxxxxxxxxxxxxxx>
- Subject: Re: [eigen] request for comments / help
- From: Gael Guennebaud <gael.guennebaud@xxxxxxxxx>
- Date: Mon, 11 Jun 2012 18:31:22 +0200
- Cc: eigen@xxxxxxxxxxxxxxxxxxx
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=A7LzYkp7SdjkblBDja+5whWgcbr/mwx1+coQfu5o8gA=; b=DgqT564wd4QxN8qUAXRGxI5oy1mJg6kWC42DHtFhunJoAIzgY6pGpCKI5E7chprokm 0mq5R1BL51qG2AFLgsk9RJxF1lYMwN6/OpKFEstOfoEt4blSCjsQ0SlwIA3vDTq9YWux p1lztYr/Wa+kE1ZstwohpoXX4c8IOtKlrrLPujSRaqlrG2m6DpWy8yoQR2jNtk+XtZ4M ndrSZ9Zb9jYhYTpUMMQx4Hl20LpjlWiuYQlMHRGwxKxXO3ME28w4iNlVG17F9E/GlmqX gn6r2hTFQCV2Us1AV1bTvsjwDo8KAqKIuhtcaTxf/Q93pFy4xViK0/M2ORiIGlJrrwV7 9mcg==
On Mon, Jun 11, 2012 at 5:56 PM, Helmut Jarausch
<jarausch@xxxxxxxxxxxxxxxxxxx> wrote:
> I've attached the corrected version of QR_Cholesky.
> Is it impudent to suggest adding this to Eigen?
>
> I think it's the standard way of solving the minimum length least squares
> problem.
I think it would be better to perform a full orthogonalization of the form:
A * P = Q * U * Z
where U of the form:
| U11 0 |
| 0 0 |
This can be done by applying householder reflexions on the non zero
upper trapezoidal part of the matrix R.
gael