Home | History | Annotate | Download | only in src

Lines Matching refs:results

232                                      const float* another, Qfloat* results,
245 results[j] = (Qfloat)(s*alpha + beta);
251 const float* another, Qfloat* results )
253 calc_non_rbf_base( vcount, var_count, vecs, another, results, 1, 0 );
258 const float* another, Qfloat* results )
260 CvMat R = cvMat( 1, vcount, QFLOAT_TYPE, results );
261 calc_non_rbf_base( vcount, var_count, vecs, another, results, params->gamma, params->coef0 );
267 const float* another, Qfloat* results )
270 calc_non_rbf_base( vcount, var_count, vecs, another, results,
275 Qfloat t = results[j];
278 results[j] = (Qfloat)((1. - e)/(1. + e));
280 results[j] = (Qfloat)((e - 1.)/(e + 1.));
286 const float* another, Qfloat* results )
288 CvMat R = cvMat( 1, vcount, QFLOAT_TYPE, results );
315 results[j] = (Qfloat)(s*gamma);
323 const float* another, Qfloat* results )
327 (this->*calc_func)( vcount, var_count, vecs, another, results );
330 if( results[j] > max_val )
331 results[j] = max_val;