HomeSort by relevance Sort by last modified time
    Searched defs:conjugate (Results 1 - 20 of 20) sorted by null

  /external/eigen/Eigen/src/plugins/
CommonCwiseUnaryOps.h 19 /** \internal the return type of conjugate() */
97 /** \returns an expression of the complex conjugate of \c *this.
101 conjugate() const function
  /external/chromium-trace/catapult/tracing/third_party/gl-matrix/src/gl-matrix/
quat.js 442 * Calculates the conjugate of a quat
446 * @param {quat} a quat to calculate conjugate of
449 quat.conjugate = function (out, a) {
  /external/libgdx/gdx/src/com/badlogic/gdx/math/
Quaternion.java 221 /** Conjugate the quaternion.
224 public Quaternion conjugate () { method in class:Quaternion
237 tmp2.conjugate();
    [all...]
  /external/eigen/Eigen/src/Householder/
HouseholderSequence.h 50 * In addition to the adjoint, you can also apply the inverse (=adjoint), the transpose, and the conjugate operators.
208 /** \brief Complex conjugate of the Householder sequence. */
209 ConjugateReturnType conjugate() const function in class:Eigen::HouseholderSequence
211 return ConjugateReturnType(m_vectors.conjugate(), m_coeffs.conjugate())
217 /** \brief Adjoint (conjugate transpose) of the Householder sequence. */
220 return conjugate().setTrans(!m_trans);
372 /* Necessary for .adjoint() and .conjugate() */
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
Quaternion.java 88 public Quaternion conjugate() { method in class:Quaternion
  /prebuilts/gdb/darwin-x86/lib/python2.7/
numbers.py 38 *, /, 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
264 """Conjugate is a no-op for Reals."""
decimal.py 1615 def conjugate(self): member in class:Decimal
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
numbers.py 38 *, /, 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
264 """Conjugate is a no-op for Reals."""
decimal.py 1615 def conjugate(self): member in class:Decimal
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
numbers.py 38 *, /, 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
264 """Conjugate is a no-op for Reals."""
decimal.py 1615 def conjugate(self): member in class:Decimal
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
numbers.py 38 *, /, 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
264 """Conjugate is a no-op for Reals."""
decimal.py 1615 def conjugate(self): member in class:Decimal
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
Complex.java 155 * 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
    [all...]
  /external/eigen/Eigen/src/Core/
TriangularMatrix.h 256 /** \sa MatrixBase::conjugate() */
257 inline TriangularView<MatrixConjugateReturnType,Mode> conjugate() function in class:Eigen::TriangularView
258 { return m_matrix.conjugate(); }
259 /** \sa MatrixBase::conjugate() const */
260 inline const TriangularView<MatrixConjugateReturnType,Mode> conjugate() const function in class:Eigen::TriangularView
261 { return m_matrix.conjugate(); }
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Quaternion.h 174 Quaternion conjugate(void) const;
370 * and/or the quaternion is normalized, then it is enough to use the conjugate.
372 * \sa Quaternion::conjugate()
377 // FIXME should this function be called multiplicativeInverse and conjugate() be called inverse() or opposite() ??
380 return Quaternion(conjugate().coeffs() / n2);
388 /** \returns the conjugate of the \c *this which is equal to the multiplicative inverse
390 * The conjugate of a quaternion represents the opposite rotation.
395 inline Quaternion<Scalar> Quaternion<Scalar>::conjugate() const function in class:Eigen::Quaternion
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 151 Quaternion<Scalar> conjugate() const;
631 * and/or the quaternion is normalized, then it is enough to use the conjugate.
633 * \sa QuaternionBase::conjugate()
638 // FIXME should this function be called multiplicativeInverse and conjugate() be called inverse() or opposite() ??
641 return Quaternion<Scalar>(conjugate().coeffs() / n2);
649 /** \returns the conjugate of the \c *this which is equal to the multiplicative inverse
651 * The conjugate of a quaternion represents the opposite rotation.
657 QuaternionBase<Derived>::conjugate() const function in class:Eigen::QuaternionBase
672 Quaternion<Scalar> d = (*this) * other.conjugate();
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
Decal.java 419 rotation.conjugate();
426 rotation.conjugate(); // <- don't forget to conjugate the rotation back to normal
441 rotation.conjugate();
448 rotation.conjugate(); // <- don't forget to conjugate the rotation back to normal
463 rotation.conjugate();
470 rotation.conjugate(); // <- don't forget to conjugate the rotation back to normal
485 rotation.conjugate();
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
matx.hpp 465 template<typename _Tp> Vec<_Tp, 2> inline conjugate(const Vec<_Tp, 2>& v) function in namespace:cv::internal
470 template<typename _Tp> Vec<_Tp, 4> inline conjugate(const Vec<_Tp, 4>& v) function in namespace:cv::internal
963 return cv::internal::conjugate(*this);
969 return cv::internal::conjugate(*this);
975 return cv::internal::conjugate(*this);
981 return cv::internal::conjugate(*this);
    [all...]
  /packages/apps/Calculator/
arity-2.1.2.jar 

Completed in 489 milliseconds