Searched refs:ComplexMatrix (Results 1 – 4 of 4) sorted by relevance
/external/eigen/unsupported/test/ |
D | matrix_function.cpp | 143 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/ |
D | MatrixPower.h | 387 MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime> ComplexMatrix; typedef 396 ComplexMatrix m_T, m_U; 399 ComplexMatrix m_fT; 438 const ComplexMatrix& T, 439 const ComplexMatrix& U); 444 const ComplexMatrix& T, 445 const ComplexMatrix& U); 555 Block<ComplexMatrix,Dynamic,Dynamic> blockTp(m_fT, 0, 0, m_rank, m_rank); in computeFracPower() 559 MatrixPowerAtomic<ComplexMatrix>(m_T.topLeftCorner(m_rank, m_rank), p).compute(blockTp); in computeFracPower() 572 const ComplexMatrix& T, in revertSchur() [all …]
|
D | MatrixFunction.h | 410 typedef Matrix<ComplexScalar, Rows, Cols, 0, MaxRows, MaxCols> ComplexMatrix; 412 ComplexMatrix CA = A.template cast<ComplexScalar>(); 413 ComplexMatrix Cresult; 414 matrix_function_compute<ComplexMatrix>::run(CA, atomic, Cresult);
|
/external/eigen/test/ |
D | nomalloc.cpp | 111 maxSize, maxSize> ComplexMatrix; in ctms_decompositions() typedef 115 const ComplexMatrix complexA(ComplexMatrix::Random(size, size)); in ctms_decompositions() 129 Eigen::HessenbergDecomposition<ComplexMatrix> hessDecomp; hessDecomp.compute(complexA); in ctms_decompositions() 130 Eigen::ComplexSchur<ComplexMatrix> cSchur(size); cSchur.compute(complexA); in ctms_decompositions() 131 Eigen::ComplexEigenSolver<ComplexMatrix> cEigSolver; cEigSolver.compute(complexA); in ctms_decompositions()
|