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

template<class FType>
double Impala::Core::Vector::ReduceSumStd ( const FType *  A,
unsigned int  n 
) [inline]

Definition at line 75 of file ReduceSum.h.

00076 {
00077     double result = 0.0;
00078     for(unsigned int i = 0; i < n; i++)
00079     {
00080         result += A[i];
00081     }
00082     return result;
00083 }


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