Re: [eigen] Problem inverting a Matrix4f with Eigen 2.0.0 |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Problem inverting a Matrix4f with Eigen 2.0.0
- From: Aron Ahmadia <aja2111@xxxxxxxxxxxx>
- Date: Sat, 17 Jul 2010 18:55:50 +0300
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:sender:received :in-reply-to:references:date:x-google-sender-auth:message-id:subject :from:to:content-type; bh=m66eCA9pI2UCOJKfw/0/elX5YfodXbCvFGZEslmCw9Q=; b=uGcxHPg9lKO/icspJrICee0LfGyXKFduh8PJGznQVgbwiALc1r+htPTcqgzErs15bf vS1ToAV10eyAERca8fj/xx4yM0EGx3h8T1KleCxvY5E6ar+utPPw/8wwfwbUWHLMXV10 D4VMSBP59qUVoMY0vizdDIdHKqwDRoMNXMZco=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; b=qWuEKqUn2VLKJedUDnL8NDyVwSYOqYb73xZNdrDF3HQnIIOkjAHvsw+SZXfvvoNllf Xoe1aecWLSYiU0KM+LfyjVj4RmPAeGhswuEzSVWkHMX1H/0yEkRpFftN8ge6LCinnZwW 98+XAX0pSULqay+2/IPl1TWqkOpOgP3Kde6Lg=
Hi Benoit,
Sorry, I meant the inverse in this sense, this is something that
arises when solving the two problems:
Ab = x
Ax = b
Where I leave the unknown as x, and the fixed as b. Both problems can
be bound by a condition number that depends on the perturbations of x
\kappa = ||A||*||b||/||x|| <= ||A||*||A^-1|| (forward)
\kappa = ||A^-1||*||b||/||x|| <= ||A||*||A^-1|| (backward)
The term ||A||*||A^-1||, since it arises in both forward and backward
problems, is called the condition number of A. This is pretty solidly
in the literature, and you wouldn't confuse anybody if you had a
general "calculate the condition number of a matrix" function and more
specialized ones for calculating the condition numbers of other
specific operations.
A