Searched defs:conjugate (Results 1 - 17 of 17) 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/tensorflow/tensorflow/core/kernels/
H A Dtranspose_functor_cpu.cc34 template <typename T, bool conjugate>
52 if (conjugate) {
60 (conjugate ? 1 : 0) + ndims * (Eigen::TensorOpCost::DivCost<int64>() +
70 template <typename T, bool conjugate>
71 struct Transpose<CPUDevice, T, conjugate> {
76 internal::TransposeUsingEigen<CPUDevice, T, 2>(d, in, perm, conjugate,
80 internal::TransposeUsingEigen<CPUDevice, T, 3>(d, in, perm, conjugate,
84 internal::TransposeUsingEigen<CPUDevice, T, 4>(d, in, perm, conjugate,
88 internal::TransposeUsingEigen<CPUDevice, T, 5>(d, in, perm, conjugate,
92 internal::TransposeUsingEigen<CPUDevice, T, 6>(d, in, perm, conjugate,
144 TransposeSYCL(const SYCLDevice& d, const Tensor& in, const gtl::ArraySlice<int32> perm, bool conjugate, Tensor* out) argument
[all...]
H A Dtranspose_functor.h61 template <typename Device, typename T, bool conjugate = false>
148 const gtl::ArraySlice<int32> perm, bool conjugate,
158 if (conjugate) {
159 y.device(d) = x.conjugate().shuffle(p);
167 const gtl::ArraySlice<int32> perm, bool conjugate,
203 if (conjugate) {
210 Transpose<Device, complex64, /*conjugate=*/true>::run(d, in, perm, out);
218 if (conjugate) {
219 Transpose<Device, complex128, /*conjugate=*/true>::run(d, in, perm,
222 Transpose<Device, complex128, /*conjugate
147 TransposeUsingEigen(const Device& d, const Tensor& in, const gtl::ArraySlice<int32> perm, bool conjugate, Tensor* out) argument
166 DoTransposeImpl(const Device& d, const Tensor& in, const gtl::ArraySlice<int32> perm, bool conjugate, Tensor* out) argument
238 DoMatrixTransposeImpl(const Device& device, const Tensor& in, bool conjugate, Tensor* out) argument
[all...]
/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/python/cpython3/Lib/
H A Dnumbers.py36 *, /, abs(), .conjugate, ==, and !=.
135 def conjugate(self): member in class:Complex
136 """(x+y*i).conjugate() returns (x-y*i)."""
260 def conjugate(self): member in class:Real
H A D_pydecimal.py1680 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/tensorflow/tensorflow/cc/gradients/
H A Dmath_grad_test.cc217 complex64 conjugate(const complex64& val) { function in class:tensorflow::__anon25356::CWiseUnaryGradTest
/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/libxcam/xcore/
H A Dvec_mat.h1023 inline Quaternion<T> conjugate (const Quaternion<T>& quat) const { function in class:XCam::Quaternion
1028 return conjugate(quat) * ( 1.0f / magnitude(quat));
/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
/external/conscrypt/benchmark-android/
H A Dvogar.jarMETA-INF/ META-INF/MANIFEST.MF vogar/ vogar/TestProperties.class TestProperties.java package vogar ...

Completed in 835 milliseconds