Lines Matching refs:matrixFunction
37 class MatrixFunction
49 MatrixFunction(const MatrixType& A, AtomicType& atomic);
56 * See MatrixBase::matrixFunction() for details on how this computation
65 * \brief Partial specialization of MatrixFunction for real matrices
68 class MatrixFunction<MatrixType, AtomicType, 0>
90 MatrixFunction(const MatrixType& A, AtomicType& atomic) : m_A(A), m_atomic(atomic) { }
98 * uses MatrixFunction<MatrixType,1> and then converts the result back to
106 MatrixFunction<ComplexMatrix, AtomicType> mf(CA, m_atomic);
115 MatrixFunction& operator=(const MatrixFunction&);
120 * \brief Partial specialization of MatrixFunction for complex matrices
123 class MatrixFunction<MatrixType, AtomicType, 1>
143 MatrixFunction(const MatrixType& A, AtomicType& atomic);
180 MatrixFunction& operator=(const MatrixFunction&);
189 MatrixFunction<MatrixType,AtomicType,1>::MatrixFunction(const MatrixType& A, AtomicType& atomic)
202 void MatrixFunction<MatrixType,AtomicType,1>::compute(ResultType& result)
217 void MatrixFunction<MatrixType,AtomicType,1>::computeSchurDecomposition()
236 void MatrixFunction<MatrixType,AtomicType,1>::partitionEigenvalues()
273 typename MatrixFunction<MatrixType,AtomicType,1>::ListOfClusters::iterator MatrixFunction<MatrixType,AtomicType,1>::findCluster(Scalar key)
286 void MatrixFunction<MatrixType,AtomicType,1>::computeClusterSize()
308 void MatrixFunction<MatrixType,AtomicType,1>::computeBlockStart()
319 void MatrixFunction<MatrixType,AtomicType,1>::constructPermutation()
332 void MatrixFunction<MatrixType,AtomicType,1>::permuteSchur()
350 void MatrixFunction<MatrixType,AtomicType,1>::swapEntriesInSchur(Index index)
366 void MatrixFunction<MatrixType,AtomicType,1>::computeBlockAtomic()
377 Block<MatrixType> MatrixFunction<MatrixType,AtomicType,1>::block(MatrixType& A, Index i, Index j)
390 void MatrixFunction<MatrixType,AtomicType,1>::computeOffDiagonal()
432 typename MatrixFunction<MatrixType,AtomicType,1>::DynMatrixType MatrixFunction<MatrixType,AtomicType,1>::solveTriangularSylvester(
484 * matrixBase::matrixFunction() and related functions and most of the
523 MatrixFunction<PlainObject, AtomicType> mf(Aevaluated, atomic);
550 const MatrixFunctionReturnValue<Derived> MatrixBase<Derived>::matrixFunction(typename internal::stem_function<typename internal::traits<Derived>::Scalar>::type f) const