Home || Visual Search || Applications || Architecture || Important Messages || OGL || Src

Complex64 Impala::Core::Array::Element::operator * ( const Complex64 &  v1,
const Complex64 &  v2 
) [inline]

Definition at line 136 of file Complex64.h.

References Impala::Core::Array::Element::Complex64::X(), and Impala::Core::Array::Element::Complex64::Y().

00137 {
00138     double re = v1.X()*v2.X() - v1.Y()*v2.Y();
00139     double im = v1.X()*v2.Y() + v1.Y()*v2.X();
00140 
00141     return Complex64(re, im);
00142 }

Here is the call graph for this function:


Generated on Thu Jan 13 09:17:24 2011 for ImpalaSrc by  doxygen 1.5.1