Re: [eigen] Complex number divided by real

[ Thread Index | Date Index | More lists.tuxfamily.org/eigen Archives ]


Carlos Becker wrote:
Hi everyone,
(first, I am using the dev branch)

I am trying to do something like (a.array() * b.array().conjugate()) / (
a.array().abs() * b.array().abs() ), where a and b are two VectorXcf.

Wouldn't something like this work in your case? (I didn't actually try it ...)

(a.array() * b.array().conjugate()).rowwise().normalized();

Because:
abs(a)*abs(b) = abs(a)*abs(conj(b)) = abs(a*conj(b))

Actually, an elementwise signum function would be helpful in that case.



--
----------------------------------------------
Dipl.-Inf. Christoph Hertzberg
Cartesium 0.051
Universität Bremen
Enrique-Schmidt-Straße 5
28359 Bremen

Tel: (+49) 421-218-64252
----------------------------------------------



Mail converted by MHonArc 2.6.19+ http://listengine.tuxfamily.org/