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

template<class S, class T>
void clone ( T *&  dst,
S *  src,
int  n 
) [inline]

Definition at line 18 of file svm.cpp.

Referenced by Kernel::Kernel(), Solver::Solve(), and SVC_Q::SVC_Q().

00019 {
00020         dst = new T[n];
00021         memcpy((void *)dst,(void *)src,sizeof(T)*n);
00022 }


Generated on Fri Mar 19 10:17:06 2010 for ImpalaSrc by  doxygen 1.5.1