OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
120
maxSize, maxSize>
ComplexMatrix
;
124
const
ComplexMatrix
complexA(
ComplexMatrix
::Random(size, size));
138
Eigen::HessenbergDecomposition<
ComplexMatrix
> hessDecomp; hessDecomp.compute(complexA);
139
Eigen::ComplexSchur<
ComplexMatrix
> cSchur(size); cSchur.compute(complexA);
140
Eigen::ComplexEigenSolver<
ComplexMatrix
> cEigSolver; cEigSolver.compute(complexA);
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h
325
MaxRowsAtCompileTime, MaxColsAtCompileTime>
ComplexMatrix
;
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);
429
const
ComplexMatrix
& T,
430
const
ComplexMatrix
& U)
437
const
ComplexMatrix
& T
[
all
...]
MatrixFunction.h
81
typedef Matrix<ComplexScalar, Rows, Cols, Options, MaxRows, MaxCols>
ComplexMatrix
;
104
ComplexMatrix
CA = m_A.template cast<ComplexScalar>();
105
ComplexMatrix
Cresult;
106
MatrixFunction<
ComplexMatrix
, AtomicType> mf(CA, m_atomic);
Completed in 276 milliseconds