代码搜索:complex

找到约 10,000 项符合「complex」的源代码

代码结果 10,000
www.eeworm.com/read/206291/15297011

c fft.c

/* fft.c -- in-place decimation-in-time FFT */ #include void shuffle(), dftmerge(); void fft(N, X) complex *X; int N; { shuffle(N, X); dftmerge(N, X); }
www.eeworm.com/read/206291/15297021

c shuffle.c

/* shuffle.c - in-place shuffling (bit-reversal) of a complex array */ #include void swap(); int bitrev(); void shuffle(N, X) complex *X; int N; /* \(N\
www.eeworm.com/read/168845/5435423

cpp bienstman5.cpp

// Copyright David Abrahams 2002. // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #inc
www.eeworm.com/read/168845/5436083

cpp test43.cpp

// // Copyright (c) 2000-2002 // Joerg Walter, Mathias Koch // // Permission to use, copy, modify, distribute and sell this software // and its documentation for any purpose is hereby granted
www.eeworm.com/read/168845/5436099

cpp test13.cpp

// // Copyright (c) 2000-2002 // Joerg Walter, Mathias Koch // // Permission to use, copy, modify, distribute and sell this software // and its documentation for any purpose is hereby granted
www.eeworm.com/read/167728/5453030

c fft.c

#include #include #include #include #define REAL(z,i) ((z)[2*(i)]) #define IMAG(z,i) ((z)[2*(i)+1]) int main (void) { int i; double d
www.eeworm.com/read/167728/5453103

am makefile.am

## Process this file with automake to produce Makefile.in info_TEXINFOS = gsl-ref.texi noinst_TEXINFOS = gsl-design.texi gsl_ref_TEXINFOS = err.texi cblas.texi blas.texi min.texi fft.texi rng.texi ra
www.eeworm.com/read/162614/5520033

c debug9.c

// { dg-do assemble } // { dg-options "-g" } // Copyright (C) 2001 Free Software Foundation, Inc. // Contributed by Jeffrey D. Oldham 2001 May 17 . // This illustrates th
www.eeworm.com/read/162614/5521835

c p6611.c

// { dg-do run } // prms-id: 6611 class COMPLEX { public: COMPLEX(double a, double b=0) { re = a; im = b; } void print() const { } private: double re; double im; }; int main(void) { COMPL
www.eeworm.com/read/162614/5523327

f90 intrinsic_dotprod.f90

! Program to test the DOT_PRODUCT intrinsic program testforall implicit none integer, dimension (3) :: a integer, dimension (3) :: b real, dimension(3) :: c real r complex, dimension