OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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/blas/
common.h
93
Conj
= IsComplex
/external/eigen/Eigen/src/Core/
Functors.h
73
* This is a short cut for
conj
(x) * y which is needed for optimization purpose; in Eigen2 support mode, this becomes x *
conj
(y)
78
Conj
= NumTraits<LhsScalar>::IsComplex
85
{ return conj_helper<LhsScalar,RhsScalar,
Conj
,false>().pmul(a,b); }
89
{ return conj_helper<Packet,Packet,
Conj
,false>().pmul(a,b); }
370
EIGEN_STRONG_INLINE const Scalar operator() (const Scalar& a) const { using numext::
conj
; return
conj
(a); }
[
all
...]
Completed in 357 milliseconds