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

template<class ElemT>
void Impala::Core::Vector::DivAssign ( VectorTem< ElemT > &  v1,
VectorTem< ElemT >  v2 
) [inline]

Definition at line 16 of file DivAssign.h.

References Impala::Core::Vector::VectorTem< ElemT >::GetData(), and Impala::Core::Vector::VectorTem< ElemT >::Size().

Referenced by Avg(), HistogramAccumulation(), HistogramNormalization(), and NormalizationMax().

00017 {
00018     ElemT* p1 = v1.GetData();
00019     ElemT* p2 = v2.GetData();
00020     for (int i=0 ; i<v1.Size() ; i++)
00021         p1[i] /= p2[i];
00022 }

Here is the call graph for this function:


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