HomeSort by relevance Sort by last modified time
    Searched refs:conj (Results 51 - 75 of 137) sorted by null

1 23 4 5 6

  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 318 .applyHouseholderOnTheRight(matA.col(i).tail(remainingSize-1).conjugate(), numext::conj(h), &temp.coeffRef(0));
  /external/tensorflow/tensorflow/python/kernel_tests/
linalg_ops_test.py 44 return np.conj(temp).dot(temp.T)
130 expected_transposed = np.conj(matrix_np.T)
batch_matmul_op_test.py 46 a = a.transpose().conj()
49 b = b.transpose().conj()
matrix_triangular_solve_op_test.py 70 a_np = np.conj(np.transpose(a_np))
  /frameworks/native/libs/math/include/math/
TQuatHelpers.h 195 constexpr QUATERNION<T> PURE conj(const QUATERNION<T>& q) { function in class:android::details::TQuatFunctions
201 return conj(q) * (1 / dot(q, q));
quat.h 128 return conj(*this);
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 177 #define conj(z) __TGMATH_CPLX_ONLY(z, conj) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 177 #define conj(z) __TGMATH_CPLX_ONLY(z, conj) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tgmath.h 166 #define conj(z) __TGMATH_CPLX_ONLY(z, conj) macro
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
nonlinear_beamformer.cc 94 first_product += conj(norm_mat_els[0][j]) * mat_els[j][i];
114 result += conj(lhs_elements[0][i]) * rhs_elements[0][i];
150 // Does |out| = |in|.' * conj(|in|) for row vector |in|.
160 out_elements[i][j] = in_elements[i] * conj(in_elements[j]);
  /external/clang/test/CodeGen/
libcall-declarations.c 217 double _Complex conj(double _Complex);
305 F(cimagf), F(cimagl), F(conj), F(conjf), F(conjl),
504 // CHECK-NOERRNO: declare { double, double } @conj(double, double) [[NUW]]
593 // CHECK-ERRNO: declare { double, double } @conj(double, double) [[NUW]]
  /external/opencv/cxcore/src/
_cxcore.h 166 inline CvComplex32f conj(CvComplex32f a) function
256 inline CvComplex64f conj(CvComplex64f a) function
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tgmath.h 442 #define conj(Val) __TGMATH_UNARY_IMAG (Val, conj) macro
  /bionic/tests/headers/posix/
complex_h.c 106 FUNCTION(conj, double complex (*f)(double complex));
  /external/eigen/Eigen/src/SVD/
JacobiSVD.h 388 if(svd.computeU()) svd.m_matrixU.col(p) *= conj(z);
394 if(svd.computeU()) svd.m_matrixU.col(q) *= conj(z);
400 rot.c() = conj(work_matrix.coeff(p,p)) / n;
414 if(svd.computeU()) svd.m_matrixU.col(q) *= conj(z);
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseSelfAdjointView.h 326 if(!LhsIsRowMajor) lhs_ij = numext::conj(lhs_ij);
328 res(i.index(),k) += numext::conj(lhs_ij) * rhs_j;
510 dest.valuePtr()[k] = numext::conj(it.value());
576 dest.valuePtr()[k] = numext::conj(it.value());
  /external/eigen/blas/
level1_impl.h 126 *s = alpha*numext::conj(b)/norm;
  /external/eigen/test/
product_trmm.cpp 66 VERIFY_IS_APPROX( ge_xs = (s1*mat).adjoint().template triangularView<Mode>() * ge_left.adjoint(), numext::conj(s1) * triTr.conjugate() * ge_left.adjoint());
umeyama.cpp 85 Q.col(0) *= numext::conj(Q.determinant());
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorFFT.h 332 a[i] = data[i] * numext::conj(pos_j_base_powered[i]);
347 b[i] = numext::conj(pos_j_base_powered[i]);
358 b[i] = numext::conj(pos_j_base_powered[m-i]);
382 data[i] = a[i] * numext::conj(pos_j_base_powered[i]);
  /external/eigen/unsupported/Eigen/CXX11/src/TensorSymmetry/
Symmetry.h 268 value = numext::conj(value);
  /external/tensorflow/tensorflow/core/kernels/
transpose_functor_cpu.cc 53 q[o_idx] = Eigen::numext::conj(p[i_idx]);
  /external/eigen/Eigen/src/Core/
MathFunctions.h 238 * Implementation of conj *
257 using std::conj;
258 return conj(x);
924 inline EIGEN_MATHFUNC_RETVAL(conj, Scalar) conj(const Scalar& x) function in namespace:Eigen::numext
926 return EIGEN_MATHFUNC_IMPL(conj, Scalar)::run(x);
    [all...]
  /prebuilts/go/darwin-x86/src/math/cmplx/
cmath_test.go 132 var conj = []complex128{ var
622 if f := Conj(vc[i]); !cVeryclose(conj[i], f) {
623 t.Errorf("Conj(%g) = %g, want %g", vc[i], f, conj[i])
627 if f := Conj(vcConjSC[i]); !cAlike(conjSC[i], f) {
628 t.Errorf("Conj(%g) = %g, want %g", vcConjSC[i], f, conjSC[i])
870 Conj(complex(2.5, 3.5))
  /prebuilts/go/linux-x86/src/math/cmplx/
cmath_test.go 132 var conj = []complex128{ var
622 if f := Conj(vc[i]); !cVeryclose(conj[i], f) {
623 t.Errorf("Conj(%g) = %g, want %g", vc[i], f, conj[i])
627 if f := Conj(vcConjSC[i]); !cAlike(conjSC[i], f) {
628 t.Errorf("Conj(%g) = %g, want %g", vcConjSC[i], f, conjSC[i])
870 Conj(complex(2.5, 3.5))

Completed in 1182 milliseconds

1 23 4 5 6