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

  /prebuilts/go/darwin-x86/src/math/cmplx/
conj.go 7 // Conj returns the complex conjugate of x.
8 func Conj(x complex128) complex128 { return complex(real(x), -imag(x)) }
  /prebuilts/go/linux-x86/src/math/cmplx/
conj.go 7 // Conj returns the complex conjugate of x.
8 func Conj(x complex128) complex128 { return complex(real(x), -imag(x)) }
  /external/eigen/Eigen/src/Core/functors/
BinaryFunctors.h 106 * This is a short cut for conj(x) * y which is needed for optimization purpose; in Eigen2 support mode, this becomes x * conj(y)
113 Conj = NumTraits<LhsScalar>::IsComplex
120 { return conj_helper<LhsScalar,RhsScalar,Conj,false>().pmul(a,b); }
124 { return conj_helper<Packet,Packet,Conj,false>().pmul(a,b); }
  /external/eigen/blas/
common.h 91 Conj = IsComplex

Completed in 78 milliseconds