Searched defs:noalias (Results 1 - 1 of 1) sorted by relevance

/external/eigen/Eigen/src/Core/
H A DNoAlias.h25 * It is the return type of MatrixBase::noalias()
28 * \sa MatrixBase::noalias()
75 * More precisely, noalias() allows to bypass the EvalBeforeAssignBit flag.
77 * expressions have this flag. Therefore, noalias() is only usefull when
80 * Here are some examples where noalias is usefull:
82 * D.noalias() = A * B;
83 * D.noalias() += A.transpose() * B;
84 * D.noalias() -= 2 * A * B.adjoint();
89 * A.noalias() = A * B;
101 NoAlias<Derived,MatrixBase> MatrixBase<Derived>::noalias() function in class:Eigen::MatrixBase
[all...]

Completed in 121 milliseconds