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

svm_problem* Impala::Core::Training::SvmProblemBuilder::MakeProblem ( Vector::VectorTem< double > *  feature  )  [inline]

Definition at line 130 of file SvmProblemBuilder.h.

References AddFeature(), Clear(), mModelLength, and mModelNodes.

00131     {
00132         if(mModelLength > 0)
00133             ILOG_ERROR_NODE("wrong MakeProblem called: model not empty");
00134         AddFeature(0, feature);
00135         svm_problem* problem = Impala::MakeProblem(1);
00136         problem->x[0] = mModelNodes[0];
00137         Clear();
00138         return problem;
00139     }

Here is the call graph for this function:


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