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

void Impala::Core::Tracking::Classifier::MultiplyWithTranspose ( Array::Array2dScalarReal64 *&  matrix,
const double *  vec 
) [inline, private]

Todo:
should move to Core/Matrix

Definition at line 242 of file Classifier.h.

References Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CH(), Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CPB(), and Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CW().

00243     {
00244         for(int i=0 ; i<matrix->CH() ; i++)
00245         {
00246             double* dst = matrix->CPB(0, i);
00247             for(int j=0 ; j<matrix->CW() ; j++)
00248                 dst[j] = vec[i]*vec[j];
00249         }
00250     }

Here is the call graph for this function:


Generated on Thu Jan 13 09:21:02 2011 for ImpalaSrc by  doxygen 1.5.1