[eigen] Fast QR for 2x2, 3x3 |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: [eigen] Fast QR for 2x2, 3x3
- From: Andrea Arteaga <yo.eres@xxxxxxxxx>
- Date: Sun, 22 Feb 2009 21:42:34 +0100
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=eBF/gHKnmXB4zPC/HVABir00pqcaVC7OmDaeN1tunIU=; b=CeaXnVOh2hqP/gRofCC7CDWuHvBn21pu6825qIho8gUqNpIMtcXoXrkSXeIV6+lcEi zveFhsT9eT8NJ95/UyrOJaRRKhHngVDoBCeJBA/XjfOc/DwCdSsRFpmO1PggDltURYwU LE20joUmy0H1BQrdXatD/tgKlFnsYGUH3VHMY=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=ou98hRI9EhMB3+GzjWD0WNFUZmEUqxQap2J1VjoerboWULEo7pTNy3gqqnC/spIMY2 s9pnJ9DNA9jCPGPwCw6PEXcfMhzk2DxouvJ4xCaZ+8x3dPgEhtGIdUWxdUg1cMUsslS3 ywB1qA6Mjzpuyj7RGQ3aW26Su0ncNY/vbynbA=
Hi.
I'm Andrea Arteaga and I'm student of Computing Science and Engeneering at ETH
Zurich.
I read this in the todo-page (http://eigen.tuxfamily.org/index.php?title=Todo#QR_module):
implement efficient QR decomposition for 2x2 and 3x3 matrix with optional computation of R (maybe using Gram-Schmitd instead of Householder transformations ?)
I thought that Givens Rotations (http://en.wikipedia.org/wiki/Givens_rotation) are perfect for that: the computation of a givens-matrix requires only (execution of sin()) + (execution of cos()) operations; the product between two 2x2 matrices requires only 8 operations and maybe less than that.
If you need it, I can help a little bit, QR is one of my preferred topics!
[I'm sorry for my bad english, I live in Switzerland and I never studied well english...]