Home
last modified time | relevance | path

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

/external/webrtc/webrtc/modules/audio_processing/beamformer/
Dcomplex_matrix.h26 class ComplexMatrix : public Matrix<complex<T> > {
28 ComplexMatrix() : Matrix<complex<T> >() {} in ComplexMatrix() function
30 ComplexMatrix(size_t num_rows, size_t num_columns) in ComplexMatrix() function
33 ComplexMatrix(const complex<T>* data, size_t num_rows, size_t num_columns) in ComplexMatrix() function
37 ComplexMatrix& PointwiseConjugate() { in PointwiseConjugate()
47 ComplexMatrix& PointwiseConjugate(const ComplexMatrix& operand) { in PointwiseConjugate()
52 ComplexMatrix& ConjugateTranspose() { in ConjugateTranspose()
61 ComplexMatrix& ConjugateTranspose(const ComplexMatrix& operand) { in ConjugateTranspose()
67 ComplexMatrix& ZeroImag() { in ZeroImag()
77 ComplexMatrix& ZeroImag(const ComplexMatrix& operand) { in ZeroImag()
[all …]
Dcomplex_matrix_unittest.cc33 ComplexMatrix<float> initial_mat(*kValuesInitial, kNumRows, kNumCols); in TEST()
34 ComplexMatrix<float> expected_result(*kValuesExpected, kNumRows, kNumCols); in TEST()
35 ComplexMatrix<float> actual_result(kNumRows, kNumCols); in TEST()
64 ComplexMatrix<float> initial_mat( in TEST()
66 ComplexMatrix<float> expected_result( in TEST()
68 ComplexMatrix<float> actual_result(kNumResultRows, kNumResultCols); in TEST()
89 ComplexMatrix<float> initial_mat(*kValuesInitial, kNumRows, kNumCols); in TEST()
90 ComplexMatrix<float> expected_result(*kValuesExpected, kNumRows, kNumCols); in TEST()
91 ComplexMatrix<float> actual_result; in TEST()
Dcovariance_matrix_generator.cc29 float Norm(const ComplexMatrix<float>& x) { in Norm()
45 ComplexMatrix<float>* mat) { in UniformCovarianceMatrix()
70 ComplexMatrix<float>* mat) { in AngledCovarianceMatrix()
74 ComplexMatrix<float> interf_cov_vector(1, geometry.size()); in AngledCovarianceMatrix()
75 ComplexMatrix<float> interf_cov_vector_transposed(geometry.size(), 1); in AngledCovarianceMatrix()
96 ComplexMatrix<float>* mat) { in PhaseAlignmentMasks()
Dcovariance_matrix_generator.h28 ComplexMatrix<float>* mat);
38 ComplexMatrix<float>* mat);
49 ComplexMatrix<float>* mat);
Dnonlinear_beamformer.cc80 float Norm(const ComplexMatrix<float>& mat, in Norm()
81 const ComplexMatrix<float>& norm_mat) { in Norm()
103 complex<float> ConjugateDotProduct(const ComplexMatrix<float>& lhs, in ConjugateDotProduct()
104 const ComplexMatrix<float>& rhs) { in ConjugateDotProduct()
126 float SumAbs(const ComplexMatrix<float>& mat) { in SumAbs()
138 float SumSquares(const ComplexMatrix<float>& mat) { in SumSquares()
151 void TransposedConjugatedProduct(const ComplexMatrix<float>& in, in TransposedConjugatedProduct()
152 ComplexMatrix<float>* out) { in TransposedConjugatedProduct()
Dcovariance_matrix_generator_unittest.cc34 ComplexMatrix<float> actual_covariance_matrix(kNumberMics, kNumberMics); in TEST()
62 ComplexMatrix<float> actual_covariance_matrix(kNumberMics, kNumberMics); in TEST()
99 ComplexMatrix<float> actual_covariance_matrix(kNumberMics, kNumberMics); in TEST()
156 ComplexMatrix<float> actual_covariance_matrix(kNumberMics, kNumberMics); in TEST()
194 ComplexMatrix<float> actual_covariance_matrix(kNumberMics, kNumberMics); in TEST()
Dnonlinear_beamformer.h80 typedef ComplexMatrix<float> ComplexMatrixF;
/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()