Searched refs:ComplexMatrix (Results 1 – 4 of 4) sorted by relevance
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
D | MatrixPower.h | 385 MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime> ComplexMatrix; typedef 394 ComplexMatrix m_T, m_U; 397 ComplexMatrix m_fT; 436 const ComplexMatrix& T, 437 const ComplexMatrix& U); 442 const ComplexMatrix& T, 443 const ComplexMatrix& U); 553 Block<ComplexMatrix,Dynamic,Dynamic> blockTp(m_fT, 0, 0, m_rank, m_rank); in computeFracPower() 557 MatrixPowerAtomic<ComplexMatrix>(m_T.topLeftCorner(m_rank, m_rank), p).compute(blockTp); in computeFracPower() 570 const ComplexMatrix& T, in revertSchur() [all …]
|
D | MatrixFunction.h | 401 typedef Matrix<ComplexScalar, Rows, Cols, 0, MaxRows, MaxCols> ComplexMatrix; 403 ComplexMatrix CA = A.template cast<ComplexScalar>(); 404 ComplexMatrix Cresult; 405 matrix_function_compute<ComplexMatrix>::run(CA, atomic, Cresult);
|
/external/eigen/unsupported/test/ |
D | matrix_function.cpp | 140 MatrixType::ColsAtCompileTime, MatrixType::Options> ComplexMatrix; in testGonioFunctions() typedef 145 ComplexMatrix Ac = A.template cast<ComplexScalar>(); in testGonioFunctions() 147 ComplexMatrix exp_iA = (imagUnit * Ac).exp(); in testGonioFunctions() 148 ComplexMatrix exp_miA = (-imagUnit * Ac).exp(); in testGonioFunctions() 150 ComplexMatrix sinAc = A.sin().template cast<ComplexScalar>(); in testGonioFunctions() 153 ComplexMatrix cosAc = A.cos().template cast<ComplexScalar>(); in testGonioFunctions()
|
/external/eigen/test/ |
D | nomalloc.cpp | 110 maxSize, maxSize> ComplexMatrix; in ctms_decompositions() typedef 114 const ComplexMatrix complexA(ComplexMatrix::Random(size, size)); in ctms_decompositions() 128 Eigen::HessenbergDecomposition<ComplexMatrix> hessDecomp; hessDecomp.compute(complexA); in ctms_decompositions() 129 Eigen::ComplexSchur<ComplexMatrix> cSchur(size); cSchur.compute(complexA); in ctms_decompositions() 130 Eigen::ComplexEigenSolver<ComplexMatrix> cEigSolver; cEigSolver.compute(complexA); in ctms_decompositions()
|