Home
last modified time | relevance | path

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

/external/eigen/unsupported/test/
Dmatrix_function.cpp144 MatrixType::ColsAtCompileTime, MatrixType::Options> ComplexMatrix; in testGonioFunctions() typedef
149 ComplexMatrix Ac = A.template cast<ComplexScalar>(); in testGonioFunctions()
151 ComplexMatrix exp_iA = (imagUnit * Ac).exp(); in testGonioFunctions()
152 ComplexMatrix exp_miA = (-imagUnit * Ac).exp(); in testGonioFunctions()
154 ComplexMatrix sinAc = A.sin().template cast<ComplexScalar>(); in testGonioFunctions()
157 ComplexMatrix cosAc = A.cos().template cast<ComplexScalar>(); in testGonioFunctions()
/external/eigen/test/
Dnomalloc.cpp115 maxSize, maxSize> ComplexMatrix; in ctms_decompositions() typedef
119 const ComplexMatrix complexA(ComplexMatrix::Random(size, size)); in ctms_decompositions()
133 Eigen::HessenbergDecomposition<ComplexMatrix> hessDecomp; hessDecomp.compute(complexA); in ctms_decompositions()
134 Eigen::ComplexSchur<ComplexMatrix> cSchur(size); cSchur.compute(complexA); in ctms_decompositions()
135 Eigen::ComplexEigenSolver<ComplexMatrix> cEigSolver; cEigSolver.compute(complexA); in ctms_decompositions()
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
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()