Home | History | Annotate | Download | only in Core

Lines Matching refs:NoAlias

15 /** \class NoAlias
25 * It is the return type of MatrixBase::noalias()
28 * \sa MatrixBase::noalias()
31 class NoAlias
35 NoAlias(ExpressionType& expression) : m_expression(expression) {}
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;
124 * \sa class NoAlias
127 NoAlias<Derived,MatrixBase> MatrixBase<Derived>::noalias()