Home | History | Annotate | Download | only in eigen2

Lines Matching full:hyperplane

17                                   HyperplaneType *hyperplane,
22 // pick a random hyperplane, store the coefficients of its equation
23 hyperplane->coeffs().resize(size + 1);
27 hyperplane->coeffs().coeffRef(j) = ei_random<Scalar>();
28 } while(ei_abs(hyperplane->coeffs().coeff(j)) < 0.5);
31 // now pick numPoints random points on this hyperplane
38 // project cur_point onto the hyperplane
39 Scalar x = - (hyperplane->coeffs().start(size).cwise()*cur_point).sum();
40 cur_point *= hyperplane->coeffs().coeff(size) / x;
90 Hyperplane<float,2> coeffs3f;
104 Hyperplane<float,2> coeffs3f;
116 Hyperplane<double,4> coeffs5d;
127 Hyperplane<std::complex<double>,Dynamic> *coeffs12cd = new Hyperplane<std::complex<double>,Dynamic>(11);