HomeSort by relevance Sort by last modified time
    Searched defs:ComplexMatrix (Results 1 - 5 of 5) sorted by null

  /external/webrtc/webrtc/modules/audio_processing/beamformer/
complex_matrix.h 26 class ComplexMatrix : public Matrix<complex<T> > {
28 ComplexMatrix() : Matrix<complex<T> >() {}
30 ComplexMatrix(size_t num_rows, size_t num_columns)
33 ComplexMatrix(const complex<T>* data, size_t num_rows, size_t num_columns)
37 ComplexMatrix& PointwiseConjugate() {
47 ComplexMatrix& PointwiseConjugate(const ComplexMatrix& operand) {
52 ComplexMatrix& ConjugateTranspose() {
61 ComplexMatrix& ConjugateTranspose(const ComplexMatrix& operand)
    [all...]
  /external/eigen/unsupported/test/
matrix_function.cpp 143 MatrixType::ColsAtCompileTime, MatrixType::Options> ComplexMatrix;
148 ComplexMatrix Ac = A.template cast<ComplexScalar>();
150 ComplexMatrix exp_iA = (imagUnit * Ac).exp();
151 ComplexMatrix exp_miA = (-imagUnit * Ac).exp();
153 ComplexMatrix sinAc = A.sin().template cast<ComplexScalar>();
156 ComplexMatrix cosAc = A.cos().template cast<ComplexScalar>();
  /external/eigen/test/
nomalloc.cpp 111 maxSize, maxSize> ComplexMatrix;
115 const ComplexMatrix complexA(ComplexMatrix::Random(size, size));
129 Eigen::HessenbergDecomposition<ComplexMatrix> hessDecomp; hessDecomp.compute(complexA);
130 Eigen::ComplexSchur<ComplexMatrix> cSchur(size); cSchur.compute(complexA);
131 Eigen::ComplexEigenSolver<ComplexMatrix> cEigSolver; cEigSolver.compute(complexA);
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 387 MatrixType::RowsAtCompileTime, MatrixType::ColsAtCompileTime> ComplexMatrix;
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);
559 MatrixPowerAtomic<ComplexMatrix>(m_T.topLeftCorner(m_rank, m_rank), p).compute(blockTp);
572 const ComplexMatrix& T
    [all...]
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);

Completed in 296 milliseconds