Searched refs:hyperplane (Results 1 – 3 of 3) sorted by relevance
/external/eigen/Eigen/src/Geometry/ |
D | ParametrizedLine.h | 62 …E_FUNC explicit ParametrizedLine(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane); 99 …alar intersectionParameter(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane) const; 102 …E_FUNC Scalar intersection(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane) const; 105 …ctorType intersectionPoint(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane) const; 146 …entDim,_Options>::ParametrizedLine(const Hyperplane<_Scalar, _AmbientDim,OtherOptions>& hyperplane) in ParametrizedLine() argument 149 direction() = hyperplane.normal().unitOrthogonal(); in ParametrizedLine() 150 origin() = -hyperplane.normal()*hyperplane.offset(); in ParametrizedLine() 166 …ons>::intersectionParameter(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane) const in intersectionParameter() argument 168 return -(hyperplane.offset()+hyperplane.normal().dot(origin())) in intersectionParameter() 169 / hyperplane.normal().dot(direction()); in intersectionParameter() [all …]
|
/external/eigen/test/ |
D | geo_hyperplane.cpp | 16 template<typename HyperplaneType> void hyperplane(const HyperplaneType& _plane) in hyperplane() function 187 CALL_SUBTEST_1( hyperplane(Hyperplane<float,2>()) ); in test_geo_hyperplane() 188 CALL_SUBTEST_2( hyperplane(Hyperplane<float,3>()) ); in test_geo_hyperplane() 189 CALL_SUBTEST_2( hyperplane(Hyperplane<float,3,DontAlign>()) ); in test_geo_hyperplane() 191 CALL_SUBTEST_3( hyperplane(Hyperplane<double,4>()) ); in test_geo_hyperplane() 192 CALL_SUBTEST_4( hyperplane(Hyperplane<std::complex<double>,5>()) ); in test_geo_hyperplane()
|
/external/tensorflow/tensorflow/contrib/learn/python/learn/estimators/g3doc/ |
D | svm.md | 5 boundary (hyperplane for linear SVM classifier) that maximizes the distance to 16 hyperplane by solving the following optimization problem:
|