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

static void Impala::Core::Array::MulComplexNumbers ( complex *  c1,
complex *  c2,
complex *  c3 
) [inline, static]

Definition at line 39 of file MakeGaussIIR1d.h.

References Impala::Core::Array::complex::im, and Impala::Core::Array::complex::re.

Referenced by FilterCoef().

00040 {
00041 
00042    c3->re = c1->re * c2->re - c1->im * c2->im;
00043    c3->im = c1->re * c2->im + c1->im * c2->re;
00044 
00045 }


Generated on Fri Mar 19 10:57:39 2010 for ImpalaSrc by  doxygen 1.5.1