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

  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 54 const MatrixType& m_A;
73 m_A(T), m_p(p)
79 res.resizeLike(m_A);
80 switch (m_A.rows()) {
84 res(0,0) = std::pow(m_A(0,0), m_p);
113 ArrayType logTdiag = m_A.diagonal().array().log();
114 res.coeffRef(0,0) = pow(m_A.coeff(0,0), p);
116 for (Index i=1; i < m_A.cols(); ++i) {
117 res.coeffRef(i,i) = pow(m_A.coeff(i,i), p);
118 if (m_A.coeff(i-1,i-1) == m_A.coeff(i,i)
    [all...]
MatrixSquareRoot.h 40 : m_A(A)
75 const MatrixType& m_A;
82 result.resize(m_A.rows(), m_A.cols());
83 computeDiagonalPartOfSqrt(result, m_A);
84 computeOffDiagonalPartOfSqrt(result, m_A);
94 const Index size = m_A.rows();
113 const Index size = m_A.rows();
260 : m_A(A)
277 const MatrixType& m_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);
503 MatrixFunctionReturnValue(const Derived& A, StemFunction f) : m_A(A), m_f(f) { }
523 const PlainObject Aevaluated = m_A.eval();
528 Index rows() const { return m_A.rows();
    [all...]
MatrixLogarithm.h 432 MatrixLogarithmReturnValue(const Derived& A) : m_A(A) { }
451 const PlainObject Aevaluated = m_A.eval();
456 Index rows() const { return m_A.rows(); }
457 Index cols() const { return m_A.cols(); }
460 typename internal::nested<Derived>::type m_A;
  /external/eigen/unsupported/Eigen/src/KroneckerProduct/
KroneckerTensorProduct.h 40 : m_A(A), m_B(B)
46 inline Index rows() const { return m_A.rows() * m_B.rows(); }
47 inline Index cols() const { return m_A.cols() * m_B.cols(); }
51 return m_A.coeff(row / m_B.rows(), col / m_B.cols()) *
58 return m_A.coeff(i / m_A.size()) * m_B.coeff(i % m_A.size());
62 typename Lhs::Nested m_A;
88 : m_A(A), m_B(B)
94 inline Index rows() const { return m_A.rows() * m_B.rows();
    [all...]

Completed in 64 milliseconds