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

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

Completed in 265 milliseconds