代码搜索:complex

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

代码结果 10,000
www.eeworm.com/read/161095/10453329

c cdotc.c

/* -- translated by f2c (version 19940927). You must link the resulting object file with the libraries: -lf2c -lm (in that order) */ #include "f2c.h" /* Complex */ VOID cdotc_(complex * ret_v
www.eeworm.com/read/161095/10453894

c cdotc.c

/* -- translated by f2c (version 19940927). You must link the resulting object file with the libraries: -lf2c -lm (in that order) */ #include "f2c.h" /* Complex */ VOID cdotc_(complex * ret_v
www.eeworm.com/read/161094/10454795

c cdotc.c

/* -- translated by f2c (version 19940927). You must link the resulting object file with the libraries: -lf2c -lm (in that order) */ #include "f2c.h" /* Complex */ VOID cdotc_(complex * ret_v
www.eeworm.com/read/352960/10486764

c imdct.c

/* * imdct.c * Copyright (C) 2000-2003 Michel Lespinasse * Copyright (C) 1999-2000 Aaron Holtzman * * The ifft algorithms in this file have been large
www.eeworm.com/read/424063/10500408

m rctdm.m

function [ret,x0,str,ts,xts]=rctdm(t,x,u,flag); %RCTDM is the M-file description of the SIMULINK system named RCTDM. % The block-diagram can be displayed by typing: RCTDM. % % SYS=RCTDM(T,X,U,FLAG
www.eeworm.com/read/352500/10546966

c example 5-1.c

// Example 5 - 1. Single-Precision Complex FIR Filter C Listing void sp_fir_cplx(float * x, float * h, float * r, int nh, int nr) { int i,j; float imag, real; for (i = 0; i < 2*nr; i +=
www.eeworm.com/read/352327/10563503

h nfft.h

/*! \file nfft.h * \brief Header file for the library. * * Includes simple and fast computation of the NDFT (direct problem) as well * as (iterative) solution to the inverse problem. * authors:
www.eeworm.com/read/352044/10585966

cpp rootmontecarlocomplex.cpp

//RootMonteCarloComplex.cpp //MonteCarlo法求解非线性方程一复根 #define FM //注解此行,将调用FunctionModule2() #ifdef FM #define FunctionModule FunctionModule1 #else #define FunctionModule FunctionModule2
www.eeworm.com/read/277459/10636984

cs addbutterfly.cs

using System; namespace FFT { /// /// Summary description for AddButterfly. /// class addButterfly : Butterfly { float oldr1, oldi1; public addButterfly(f
www.eeworm.com/read/421635/10722016

cpp vc0904.cpp

// Example 9-4: 复数类 #include class Complex { double m_fReal, m_fImag; public: Complex(double r = 0, double i = 0): m_fReal(r), m_fImag(i){} double Real(){return m_fReal;} doub