HomeSort by relevance Sort by last modified time
    Searched refs:ComplexMatrix (Results 1 - 11 of 11) 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...]
covariance_matrix_generator.h 20 // each function, the passed-in ComplexMatrix is expected to be of size
28 ComplexMatrix<float>* mat);
38 ComplexMatrix<float>* mat);
49 ComplexMatrix<float>* mat);
complex_matrix_unittest.cc 33 ComplexMatrix<float> initial_mat(*kValuesInitial, kNumRows, kNumCols);
34 ComplexMatrix<float> expected_result(*kValuesExpected, kNumRows, kNumCols);
35 ComplexMatrix<float> actual_result(kNumRows, kNumCols);
64 ComplexMatrix<float> initial_mat(
66 ComplexMatrix<float> expected_result(
68 ComplexMatrix<float> actual_result(kNumResultRows, kNumResultCols);
89 ComplexMatrix<float> initial_mat(*kValuesInitial, kNumRows, kNumCols);
90 ComplexMatrix<float> expected_result(*kValuesExpected, kNumRows, kNumCols);
91 ComplexMatrix<float> actual_result;
covariance_matrix_generator.cc 29 float Norm(const ComplexMatrix<float>& x) {
45 ComplexMatrix<float>* mat) {
70 ComplexMatrix<float>* mat) {
74 ComplexMatrix<float> interf_cov_vector(1, geometry.size());
75 ComplexMatrix<float> interf_cov_vector_transposed(geometry.size(), 1);
96 ComplexMatrix<float>* mat) {
nonlinear_beamformer.cc 80 float Norm(const ComplexMatrix<float>& mat,
81 const ComplexMatrix<float>& norm_mat) {
103 complex<float> ConjugateDotProduct(const ComplexMatrix<float>& lhs,
104 const ComplexMatrix<float>& rhs) {
126 float SumAbs(const ComplexMatrix<float>& mat) {
138 float SumSquares(const ComplexMatrix<float>& mat) {
151 void TransposedConjugatedProduct(const ComplexMatrix<float>& in,
152 ComplexMatrix<float>* out) {
covariance_matrix_generator_unittest.cc 34 ComplexMatrix<float> actual_covariance_matrix(kNumberMics, kNumberMics);
62 ComplexMatrix<float> actual_covariance_matrix(kNumberMics, kNumberMics);
99 ComplexMatrix<float> actual_covariance_matrix(kNumberMics, kNumberMics);
156 ComplexMatrix<float> actual_covariance_matrix(kNumberMics, kNumberMics);
194 ComplexMatrix<float> actual_covariance_matrix(kNumberMics, kNumberMics);
nonlinear_beamformer.h 80 typedef ComplexMatrix<float> ComplexMatrixF;
  /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/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);
  /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);

Completed in 823 milliseconds