Implements Kernel. Definition at line 1160 of file svm.cpp. References cache, Cache::get_data(), and Kernel::kernel_function. 01161 { 01162 Qfloat *data; 01163 int start; 01164 if((start = cache->get_data(i,&data,len)) < len) 01165 { 01166 for(int j=start;j<len;j++) 01167 data[j] = (Qfloat)(this->*kernel_function)(i,j); 01168 } 01169 return data; 01170 }
Here is the call graph for this function:
|