Searched defs:conjugate (Results 1 - 10 of 10) sorted by relevance

/external/eigen/Eigen/src/plugins/
H A DCommonCwiseUnaryOps.h15 /** \internal the return type of conjugate() */
67 /// \returns an expression of the complex conjugate of \c *this.
69 EIGEN_DOC_UNARY_ADDONS(conjugate,complex conjugate)
74 conjugate() const function
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
H A DComplex.java155 * Return the conjugate of this complex number. The conjugate of
163 * sign - e.g. the conjugate of <code>1 + POSITIVE_INFINITY i</code>
166 * @return the conjugate of this Complex object
168 public Complex conjugate() { method in class:Complex
/external/eigen/Eigen/src/Householder/
H A DHouseholderSequence.h50 * In addition to the adjoint, you can also apply the inverse (=adjoint), the transpose, and the conjugate operators.
214 /** \brief Complex conjugate of the Householder sequence. */
215 ConjugateReturnType conjugate() const function in class:Eigen::HouseholderSequence
217 return ConjugateReturnType(m_vectors.conjugate(), m_coeffs.conjugate())
223 /** \brief Adjoint (conjugate transpose) of the Householder sequence. */
226 return conjugate().setTrans(!m_trans);
401 /* Necessary for .adjoint() and .conjugate() */
/external/python/cpython2/Lib/
H A Dnumbers.py38 *, /, abs(), .conjugate, ==, and !=.
152 def conjugate(self): member in class:Complex
153 """(x+y*i).conjugate() returns (x-y*i)."""
263 def conjugate(self): member in class:Real
H A Ddecimal.py1613 def conjugate(self): member in class:Decimal
/external/eigen/Eigen/src/Core/
H A DSelfAdjointView.h193 /** \sa MatrixBase::conjugate() const */
195 inline const ConjugateReturnType conjugate() const function in class:Eigen::SelfAdjointView
196 { return ConjugateReturnType(m_matrix.conjugate()); }
H A DTriangularMatrix.h240 /** \sa MatrixBase::conjugate() const */
242 inline const ConjugateReturnType conjugate() const function in class:Eigen::TriangularView
243 { return ConjugateReturnType(m_matrix.conjugate()); }
/external/eigen/Eigen/src/Geometry/
H A DQuaternion.h152 EIGEN_DEVICE_FUNC Quaternion<Scalar> conjugate() const;
654 * and/or the quaternion is normalized, then it is enough to use the conjugate.
656 * \sa QuaternionBase::conjugate()
661 // FIXME should this function be called multiplicativeInverse and conjugate() be called inverse() or opposite() ??
664 return Quaternion<Scalar>(conjugate().coeffs() / n2);
672 // Generic conjugate of a Quaternion
682 /** \returns the conjugate of the \c *this which is equal to the multiplicative inverse
684 * The conjugate of a quaternion represents the opposite rotation.
690 QuaternionBase<Derived>::conjugate() const function in class:Eigen::QuaternionBase
706 Quaternion<Scalar> d = (*this) * other.conjugate();
[all...]
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorBase.h208 conjugate() const { function in class:Eigen::TensorBase
/external/webrtc/webrtc/modules/audio_processing/aec/
H A Daec_core.c819 int conjugate) {
822 const float sign = (conjugate ? -1 : 1);
816 ScaledInverseFft(float freq_data[2][PART_LEN1], float time_data[PART_LEN2], float scale, int conjugate) argument

Completed in 335 milliseconds