Home
last modified time | relevance | path

Searched refs:ComplexMatrix (Results 1 – 4 of 4) sorted by relevance

/external/eigen/unsupported/test/
Dmatrix_function.cpp143 MatrixType::ColsAtCompileTime, MatrixType::Options> ComplexMatrix; in testGonioFunctions() typedef
148 ComplexMatrix Ac = A.template cast<ComplexScalar>(); in testGonioFunctions()
150 ComplexMatrix exp_iA = (imagUnit * Ac).exp(); in testGonioFunctions()
151 ComplexMatrix exp_miA = (-imagUnit * Ac).exp(); in testGonioFunctions()
153 ComplexMatrix sinAc = A.sin().template cast<ComplexScalar>(); in testGonioFunctions()
156 ComplexMatrix cosAc = A.cos().template cast<ComplexScalar>(); in testGonioFunctions()
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixPower.h325 MaxRowsAtCompileTime, MaxColsAtCompileTime> ComplexMatrix; typedef
329 ComplexMatrix m_T, m_U, m_fT;
343 const ComplexMatrix& T,
344 const ComplexMatrix& U);
349 const ComplexMatrix& T,
350 const ComplexMatrix& U);
419 MatrixPowerAtomic<ComplexMatrix>(m_T, p).compute(m_fT); in computeFracPower()
429 const ComplexMatrix& T, in revertSchur()
430 const ComplexMatrix& U) in revertSchur()
437 const ComplexMatrix& T, in revertSchur()
[all …]
DMatrixFunction.h81 typedef Matrix<ComplexScalar, Rows, Cols, Options, MaxRows, MaxCols> ComplexMatrix; typedef
104 ComplexMatrix CA = m_A.template cast<ComplexScalar>(); in compute()
105 ComplexMatrix Cresult; in compute()
106 MatrixFunction<ComplexMatrix, AtomicType> mf(CA, m_atomic); in compute()
/external/eigen/test/
Dnomalloc.cpp120 maxSize, maxSize> ComplexMatrix; in ctms_decompositions() typedef
124 const ComplexMatrix complexA(ComplexMatrix::Random(size, size)); in ctms_decompositions()
138 Eigen::HessenbergDecomposition<ComplexMatrix> hessDecomp; hessDecomp.compute(complexA); in ctms_decompositions()
139 Eigen::ComplexSchur<ComplexMatrix> cSchur(size); cSchur.compute(complexA); in ctms_decompositions()
140 Eigen::ComplexEigenSolver<ComplexMatrix> cEigSolver; cEigSolver.compute(complexA); in ctms_decompositions()