コード例 #1
0
VectorXf SeedFeature::operator*( const VectorXf & o ) const {
	eassert( o.size() == static_f_.cols() + dynamic_f_.cols() );
	return static_f_*o.head(static_f_.cols()) + dynamic_f_*o.tail(dynamic_f_.cols());
}