HomeSort by relevance Sort by last modified time
    Searched defs:Complex (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/eigen/bench/
benchFFT.cpp 13 #include <complex>
47 typedef typename std::complex<Scalar> Complex;
50 vector<Complex > outbuf(nfft);
82 cout << "complex";
99 bench<complex<float> >(NFFT,true);
100 bench<complex<float> >(NFFT,false);
106 bench<complex<double> >(NFFT,true);
107 bench<complex<double> >(NFFT,false);
110 bench<complex<long double> >(NFFT,true)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_abstract_numbers.py 5 from numbers import Complex, Real, Rational, Integral
11 self.assertTrue(issubclass(int, Complex))
21 self.assertTrue(issubclass(long, Complex))
38 self.assertFalse(issubclass(complex, Real))
39 self.assertTrue(issubclass(complex, Complex))
41 c1, c2 = complex(3, 2), complex(4,1)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_abstract_numbers.py 5 from numbers import Complex, Real, Rational, Integral
11 self.assertTrue(issubclass(int, Complex))
21 self.assertTrue(issubclass(long, Complex))
38 self.assertFalse(issubclass(complex, Real))
39 self.assertTrue(issubclass(complex, Complex))
41 c1, c2 = complex(3, 2), complex(4,1)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_abstract_numbers.py 5 from numbers import Complex, Real, Rational, Integral
11 self.assertTrue(issubclass(int, Complex))
21 self.assertTrue(issubclass(long, Complex))
38 self.assertFalse(issubclass(complex, Real))
39 self.assertTrue(issubclass(complex, Complex))
41 c1, c2 = complex(3, 2), complex(4,1)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_abstract_numbers.py 5 from numbers import Complex, Real, Rational, Integral
11 self.assertTrue(issubclass(int, Complex))
21 self.assertTrue(issubclass(long, Complex))
38 self.assertFalse(issubclass(complex, Real))
39 self.assertTrue(issubclass(complex, Complex))
41 c1, c2 = complex(3, 2), complex(4,1)
  /external/eigen/test/
eigensolver_generic.cpp 27 typedef typename std::complex<typename NumTraits<typename MatrixType::Scalar>::Real> Complex;
36 VERIFY_IS_APPROX((symmA.template cast<Complex>()) * (ei0.pseudoEigenvectors().template cast<Complex>()),
37 (ei0.pseudoEigenvectors().template cast<Complex>()) * (ei0.eigenvalues().asDiagonal()));
42 VERIFY_IS_APPROX(a.template cast<Complex>() * ei1.eigenvectors(),
  /external/eigen/test/eigen2/
eigen2_eigensolver.cpp 29 typedef typename std::complex<typename NumTraits<typename MatrixType::Scalar>::Real> Complex;
112 typedef typename std::complex<typename NumTraits<typename MatrixType::Scalar>::Real> Complex;
122 VERIFY_IS_APPROX((symmA.template cast<Complex>()) * (ei0.pseudoEigenvectors().template cast<Complex>()),
123 (ei0.pseudoEigenvectors().template cast<Complex>()) * (ei0.eigenvalues().asDiagonal()));
127 VERIFY_IS_APPROX(a.template cast<Complex>() * ei1.eigenvectors(),
  /external/eigen/unsupported/Eigen/src/FFT/
ei_fftw_impl.h 20 // 2. fftw_complex is compatible with std::complex
21 // This assumes std::complex<T> layout is array of size 2 with real,imag
30 fftw_complex * fftw_cast( const std::complex<double> * p)
36 fftwf_complex * fftw_cast( const std::complex<float> * p)
42 fftwl_complex * fftw_cast( const std::complex<long double> * p)
180 typedef std::complex<Scalar> Complex;
188 // complex-to-complex forward FFT
190 void fwd( Complex * dst,const Complex *src,int nfft
    [all...]
ei_kissfft_impl.h 21 typedef std::complex<Scalar> Complex;
22 std::vector<Complex> m_twiddles;
25 std::vector<Complex> m_scratchBuf;
36 m_twiddles[i] = exp( Complex(0,i*phinc) );
64 void work( int stage,Complex * xout, const _Src * xin, size_t fstride,size_t in_stride)
68 Complex * Fout_beg = xout;
69 Complex * Fout_end = xout + p*m;
99 void bfly2( Complex * Fout, const size_t fstride, int m)
102 Complex t = Fout[m+k] * m_twiddles[k*fstride]
    [all...]
  /external/eigen/blas/
common.h 17 #include <complex>
88 typedef std::complex<RealScalar> Complex;
  /external/eigen/unsupported/test/
FFTW.cpp 14 std::complex<T> RandomCpx() { return std::complex<T>( (T)(rand()/(T)RAND_MAX - .5), (T)(rand()/(T)RAND_MAX - .5) ); }
21 complex<long double> promote(complex<T> x) { return complex<long double>(x.real(),x.imag()); }
23 complex<long double> promote(float x) { return complex<long double>( x); }
24 complex<long double> promote(double x) { return complex<long double>( x); }
25 complex<long double> promote(long double x) { return complex<long double>( x);
    [all...]
  /external/clang/test/CodeGen/
xcore-stringtype.c 35 double _Complex Complex; // not supported
  /prebuilts/gdb/darwin-x86/lib/python2.7/
numbers.py 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
34 class Complex(Number):
35 """Complex defines the operations that work on the builtin complex type.
37 In short, those are: a conversion to complex, .real, .imag, +, -,
41 knowledge about them, it should fall back to the builtin complex
49 """Return a builtin complex instance. Called for complex(self)."""
138 """self**exponent; should promote to float or complex when necessary."""
166 Complex.register(complex
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
numbers.py 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
34 class Complex(Number):
35 """Complex defines the operations that work on the builtin complex type.
37 In short, those are: a conversion to complex, .real, .imag, +, -,
41 knowledge about them, it should fall back to the builtin complex
49 """Return a builtin complex instance. Called for complex(self)."""
138 """self**exponent; should promote to float or complex when necessary."""
166 Complex.register(complex
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
numbers.py 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
34 class Complex(Number):
35 """Complex defines the operations that work on the builtin complex type.
37 In short, those are: a conversion to complex, .real, .imag, +, -,
41 knowledge about them, it should fall back to the builtin complex
49 """Return a builtin complex instance. Called for complex(self)."""
138 """self**exponent; should promote to float or complex when necessary."""
166 Complex.register(complex
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
numbers.py 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
34 class Complex(Number):
35 """Complex defines the operations that work on the builtin complex type.
37 In short, those are: a conversion to complex, .real, .imag, +, -,
41 knowledge about them, it should fall back to the builtin complex
49 """Return a builtin complex instance. Called for complex(self)."""
138 """self**exponent; should promote to float or complex when necessary."""
166 Complex.register(complex
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
types.hpp 65 //////////////////////////////// Complex //////////////////////////////
67 /** @brief A complex number class.
69 The template class is similar and compatible with std::complex, however it provides slightly
71 to std::complex::real() and std::complex::imag().
73 template<typename _Tp> class Complex
78 Complex();
79 Complex( _Tp _re, _Tp _im = 0 );
82 template<typename T2> operator Complex<T2>() const;
84 Complex conj() const
    [all...]
cvdef.h 57 #undef Complex
  /external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
Complex.java 18 package org.apache.commons.math.complex;
31 * Representation of a Complex number - a number which has both a
48 public class Complex implements FieldElement<Complex>, Serializable {
51 public static final Complex I = new Complex(0.0, 1.0);
54 /** A complex number representing "NaN + NaNi" */
55 public static final Complex NaN = new Complex(Double.NaN, Double.NaN);
58 /** A complex number representing "+INF + INFi" *
    [all...]
  /external/clang/lib/CodeGen/
CGValue.h 36 /// simple LLVM SSA value, a pair of SSA values for complex numbers, or the
39 enum Flavor { Scalar, Complex, Aggregate };
52 bool isComplex() const { return V1.getInt() == Complex; }
63 /// getComplexVal - Return the real/imag components of this complex value.
96 ER.V1.setInt(Complex);
  /external/javassist/src/test/test/javassist/convert/
ArrayAccessReplaceTest.java 29 CtClass clazz = pool.get(ArrayAccessReplaceTest.class.getName() + "$Complex");
390 public static class Complex implements ComplexInterface {
  /external/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 364 Complex = 28,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
X.h 552 #define Complex 0 /* paths may intersect */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
X.h 552 #define Complex 0 /* paths may intersect */
  /packages/apps/Calculator/
arity-2.1.2.jar 

Completed in 661 milliseconds

1 2 3