Re: [eigen] quaternion transcendentals |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/eigen Archives
]
- To: eigen@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [eigen] quaternion transcendentals
- From: Benoit Jacob <jacob.benoit.1@xxxxxxxxx>
- Date: Fri, 26 Jun 2009 15:41:18 +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 :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=ehF2chN76k58UpztGF8XqTXpwyefGdQdYLaLaBYP8Rs=; b=gk32E/pUVm7flqXvegLMfUYna66TiKND4i97roFVcvFiXE1BFU0zzapa985QlCHJJP 4VzoY3l4ynD+W+l5B6Uvub15j30hjdXsTzB4QVqlfTSxFmlGP7DheVCI3vdd0ir0Uhyx hrJmqLaADLpcdJfhGbHg1gdABqoYTXG6AprLU=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=L424VSGqPAZFwYsGZgtXhT04bl34NBuqJyS95Ty2R/sH1XM6KVwrkHl02/xiFWFRJs k3en3MG5RIPVez8qN0pBp2mb2WzXFoe4CKFsfouFXYxaamMu+3Y3xCw6EQuGDmLvCPkd pkrpKcpJFYpzWESyo8qJug2emSjeI3YyveuZ4=
2009/6/26 Thomas Vaughan <tevaughan@xxxxxxxxx>:
> A brief look at the documentation suggests that eigen does not support
> exp() for the quaternions. (But perhaps I just missed it in my clumsy
> and hasty review. :^)
>
> So I am wondering if anyone has looked at the possibility of doing
> something like this for eigen:
>
> http://www.boost.org/doc/libs/1_38_0/libs/math/doc/quaternion/html/boost_quaternions/quaternions/trans.html
Is there a use case?
Also keep in mind that in the context of Eigen, the interesting
quaternions are the unit quaternions. For those, there is really no
way at all that there could be a well-behaved log or
pow-with-non-integer coeffs. (By the way that Boost page says they
don't have these either). So really the exponential would only be
usable for problems where you really want the exponential itself. I
really don't see the use case !
Benoit