/external/eigen/doc/snippets/ |
MatrixBase_hnormalized.cpp | 4 cout << "v.hnormalized() = " << v.hnormalized().transpose() << "]^T" << endl; 6 cout << "(P*v).hnormalized() = " << (P*v).hnormalized().transpose() << "]^T" << endl
|
DirectionWise_hnormalized.cpp | 5 cout << "M.colwise().hnormalized():" << endl << M.colwise().hnormalized() << endl << endl; 7 cout << "(P*M).colwise().hnormalized():" << endl << (P*M).colwise().hnormalized() << endl << endl
|
MatrixBase_homogeneous.cpp | 6 cout << "(P * v.homogeneous()).hnormalized() = [" << (P * v.homogeneous()).eval().hnormalized().transpose() << "]^T" << endl
|
VectorwiseOp_homogeneous.cpp | 7 cout << "P * M.colwise().homogeneous().hnormalized(): " << endl << (P * M.colwise().homogeneous()).colwise().hnormalized() << endl << endl
|
/external/eigen/test/ |
geo_homogeneous.cpp | 40 VERIFY_IS_APPROX(v0, hv0.hnormalized()); 48 VERIFY_IS_APPROX(m0, hm0.colwise().hnormalized()); 52 VERIFY_IS_APPROX(m0, hm0.colwise().hnormalized()); 87 VERIFY_IS_APPROX(aff * pts.colwise().homogeneous(), (aff * pts1).colwise().hnormalized()); 88 VERIFY_IS_APPROX(caff * pts.colwise().homogeneous(), (caff * pts1).colwise().hnormalized()); 91 VERIFY_IS_APPROX((aff * pts1).colwise().hnormalized(), aff * pts); 92 VERIFY_IS_APPROX((caff * pts1).colwise().hnormalized(), caff * pts); 96 VERIFY_IS_APPROX((aff * pts2).colwise().hnormalized(), aff * pts2.colwise().hnormalized()); 97 VERIFY_IS_APPROX((caff * pts2).colwise().hnormalized(), caff * pts2.colwise().hnormalized()) [all...] |
geo_transformations.cpp | 506 VERIFY_IS_APPROX( q*(p*h).hnormalized(), ((q*p)*h).hnormalized() );
|
/external/eigen/Eigen/src/Geometry/ |
Homogeneous.h | 169 * \sa VectorwiseOp::hnormalized() */ 172 MatrixBase<Derived>::hnormalized() const function in class:Eigen::MatrixBase 188 * It is conceptually equivalent to calling MatrixBase::hnormalized() to each column (or row) of \c *this. 193 * \sa MatrixBase::hnormalized() */ 196 VectorwiseOp<ExpressionType,Direction>::hnormalized() const function in class:Eigen::VectorwiseOp
|
/external/eigen/Eigen/src/Core/ |
MatrixBase.h | 420 inline const HNormalizedReturnType hnormalized() const;
|
VectorwiseOp.h | 659 const HNormalizedReturnType hnormalized() const;
|