Re: [eigen] Avoid SVD in rotation() for Isometry |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] Avoid SVD in rotation() for Isometry
- From: Edward Lam <edward@xxxxxxxxxx>
- Date: Fri, 11 Jan 2019 13:40:09 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sidefx.com; s=google; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to:content-language:content-transfer-encoding; bh=n/mChVagSAceN+S5TqwwsnEHMmNvkKWTWxqAkbshkhI=; b=CqgurNXcvwRETWmppCu0JACT8QvMPGe0gqGrL4OdOhNjw5RLnibn4JTeTEuPVWhgVh hjB8hbQSpaYliHZCvM/lIfisy+OrUAbN9h9E2htbaX1S46ff54aJ9QvEExwINupbtcvQ L/ddElhCtj3oRxJgbR5P5DBPxElzTM6vTyqi3NYPE4Jo071yAkz+LPtokxIGS1iEvYtx C3N2uwOo6sVsyt+TryyTtHd55D9avZSTmZcQ0EU6vW94KhSowQRYfycuK4X+6LP/d5ju llQVd4wJbdCo+kRjHJnI7xckbMQ6Fjo5dRRPbEYb2GvHErDiAGEUdtOx+WnfDrIfk/0R mZxA==
On 1/11/2019 12:41 PM, Greg Coombe wrote:
Naively moving the old code over the new system hits a
little gotcha: the "rotation()" call in Transform actually performs a full SVD
to extract the scale component from the linear part:
This is an aside, but if have a general transform, is doing Jacobi SVD the
fastest? Did anyone investigate using the newton type methods? eg.
https://www.hindawi.com/journals/ddns/2015/649423/
-Edward