HomeSort by relevance Sort by last modified time
    Searched refs:m_A (Results 1 - 3 of 3) sorted by null

  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixSquareRoot.h 40 : m_A(A)
75 const MatrixType& m_A;
82 // Compute Schur decomposition of m_A
83 const RealSchur<MatrixType> schurOfA(m_A);
88 MatrixType sqrtT = MatrixType::Zero(m_A.rows(), m_A.rows());
92 // Compute square root of m_A
102 const Index size = m_A.rows();
121 const Index size = m_A.rows();
268 : m_A(A)
    [all...]
MatrixFunction.h 90 MatrixFunction(const MatrixType& A, AtomicType& atomic) : m_A(A), m_atomic(atomic) { }
104 ComplexMatrix CA = m_A.template cast<ComplexScalar>();
112 typename internal::nested<MatrixType>::type m_A; /**< \brief Reference to argument of matrix function. */
161 typename internal::nested<MatrixType>::type m_A; /**< \brief Reference to argument of matrix function. */
190 : m_A(A), m_atomic(atomic)
215 /** \brief Store the Schur decomposition of #m_A in #m_T and #m_U */
219 const ComplexSchur<MatrixType> schurOfA(m_A);
502 MatrixFunctionReturnValue(const Derived& A, StemFunction f) : m_A(A), m_f(f) { }
522 const PlainObject Aevaluated = m_A.eval();
527 Index rows() const { return m_A.rows();
    [all...]
MatrixLogarithm.h 441 MatrixLogarithmReturnValue(const Derived& A) : m_A(A) { }
460 const PlainObject Aevaluated = m_A.eval();
465 Index rows() const { return m_A.rows(); }
466 Index cols() const { return m_A.cols(); }
469 typename internal::nested<Derived>::type m_A;

Completed in 277 milliseconds