Пример #1
0
static double stepwise_eval__( const stepwise_type * stepwise , const matrix_type * x ) {
    return matrix_row_column_dot_product( x , 0 , stepwise->beta , 0 );
}
Пример #2
0
double lars_eval1( const lars_type * lars , const matrix_type * x) {
  return lars->Y0 + matrix_row_column_dot_product( x , 0 , lars->beta0 , 0 );
}