Searched refs:lazyAssign (Results 1 – 14 of 14) sorted by relevance
/external/eigen/Eigen/src/Core/ |
D | TriangularMatrix.h | 251 void lazyAssign(const TriangularBase<OtherDerived>& other); 254 void lazyAssign(const MatrixBase<OtherDerived>& other); 358 …TriangularView<SwapWrapper<MatrixType>,Mode>(const_cast<MatrixType&>(m_matrix)).lazyAssign(other.d… 365 TriangularView<SwapWrapper<MatrixType>,Mode>(swaper).lazyAssign(other.derived()); 428 lazyAssign(alpha*prod.eval()); 608 other_evaluated.template triangularView<Mode>().lazyAssign(other.derived()); 609 lazyAssign(other_evaluated); 612 lazyAssign(other.derived()); 619 void TriangularView<MatrixType, Mode>::lazyAssign(const MatrixBase<OtherDerived>& other) 646 other_evaluated.template triangularView<Mode>().lazyAssign(other.derived().nestedExpression()); [all …]
|
D | MatrixBase.h | 78 using Base::lazyAssign; 164 Derived& lazyAssign(const ProductBase<ProductDerived, Lhs,Rhs>& other); 167 Derived& lazyAssign(const MatrixPowerProduct<MatrixPower, Lhs,Rhs>& other); 470 Derived& lazyAssign(const Flagged<OtherDerived, 0, EvalBeforeAssigningBit>& other) in lazyAssign() function 471 { return lazyAssign(other._expression()); } in lazyAssign()
|
D | Assign.h | 485 ::lazyAssign(const DenseBase<OtherDerived>& other) 520 …INE Derived& run(Derived& dst, const OtherDerived& other) { return dst.lazyAssign(other.derived())… 526 …LINE Derived& run(Derived& dst, const OtherDerived& other) { return dst.lazyAssign(other.eval()); } 530 …INE Derived& run(Derived& dst, const OtherDerived& other) { return dst.lazyAssign(other.transpose(… 536 …INE Derived& run(Derived& dst, const OtherDerived& other) { return dst.lazyAssign(other.transpose(…
|
D | DenseBase.h | 272 Derived& lazyAssign(const DenseBase<OtherDerived>& other); 377 SwapWrapper<Derived>(derived()).lazyAssign(other.derived()); 386 SwapWrapper<Derived>(derived()).lazyAssign(other.derived()); in swap()
|
D | ArrayBase.h | 76 using Base::lazyAssign;
|
D | SelfCwiseBinaryOp.h | 128 EIGEN_STRONG_INLINE SelfCwiseBinaryOp& lazyAssign(const DenseBase<RhsDerived>& rhs)
|
D | Ref.h | 253 m_object.lazyAssign(expr);
|
D | MapBase.h | 66 using Base::lazyAssign;
|
D | ProductBase.h | 282 Derived& MatrixBase<Derived>::lazyAssign(const ProductBase<ProductDerived, Lhs,Rhs>& other)
|
D | PlainObjectBase.h | 411 EIGEN_STRONG_INLINE Derived& lazyAssign(const DenseBase<OtherDerived>& other) 414 return Base::lazyAssign(other.derived());
|
/external/eigen/Eigen/src/Eigen2Support/ |
D | SVD.h | 589 if(scaling) scaling->lazyAssign(m_matV * sv.asDiagonal() * m_matV.adjoint()); in computeRotationScaling() 594 rotation->lazyAssign(m * m_matV.adjoint()); in computeRotationScaling() 615 if(scaling) scaling->lazyAssign(m_matU * sv.asDiagonal() * m_matU.adjoint()); in computeScalingRotation() 620 rotation->lazyAssign(m * m_matV.adjoint()); in computeScalingRotation()
|
/external/eigen/Eigen/src/Geometry/ |
D | Transform.h | 1023 if(scaling) scaling->lazyAssign(svd.matrixV() * sv.asDiagonal() * svd.matrixV().adjoint()); in computeRotationScaling() 1028 rotation->lazyAssign(m * svd.matrixV().adjoint()); in computeRotationScaling() 1052 if(scaling) scaling->lazyAssign(svd.matrixU() * sv.asDiagonal() * svd.matrixU().adjoint()); in computeScalingRotation() 1057 rotation->lazyAssign(m * svd.matrixV().adjoint()); in computeScalingRotation()
|
/external/eigen/Eigen/src/Core/products/ |
D | CoeffBasedProduct.h | 197 m_result.lazyAssign(*this);
|
/external/eigen/doc/ |
D | InsideEigenExample.dox | 287 …static Derived& run(Derived& dst, const OtherDerived& other) { return dst.lazyAssign(other.derived… 291 OK so now our next job is to understand how lazyAssign works :) 297 ::lazyAssign(const MatrixBase<OtherDerived>& other)
|