代码搜索:complex
找到约 10,000 项符合「complex」的源代码
代码结果 10,000
www.eeworm.com/read/217552/14958838
c w_table.c
/*
w_table.c - Generate twiddle factor lookup table
*/
#include "icomplex.h"
#include
#define pi 3.1415926535897
void w_table
www.eeworm.com/read/217552/14958857
c exp7b.c
/*
exp7b.c - Example to test FFT (fixed-point)
Use Twiddle lookup-table method
*/
#include "icomplex.h"
#include "input7_i.dat" /* Experiment data */
extern void fft(comp
www.eeworm.com/read/216898/14987445
cpp genmathfunc.cpp
#include
#include
#include
#include
using namespace std;
// abs(i), labs(l) Absolute value
// acos(d), acosl(ld) Inverse
www.eeworm.com/read/216898/14987518
h zero.h
/***************************************************************************
* blitz/zero.h Zero elements
*
* $Id: zero.h,v 1.5 2003/12/11 03:44:22 julianc Exp $
*
* Copyright (C) 1997-2
www.eeworm.com/read/216090/15027312
c trideki.c
/********************************************************/
/*TridekI */
/*Maritza Rodr韌uez Mart韓ez */
/*Computational Signal Processing Group - march-98 */
/*CSPG - Dr. Domingo Rodr韌uez
www.eeworm.com/read/216090/15027315
c ikronp.c
/********************************************************/
/*IkronP */
/*Maritza Rodr韌uez Mart韓ez */
/*Computational Signal Processing Group - march-98 */
/*CSPG - Dr. Domingo Rodr韌ue
www.eeworm.com/read/215702/15052508
cpp 8_1.cpp
//8_1.cpp
#include
using namespace std;
class complex //复数类声明
{
public: //外部接口
complex(double r=0.0,double i=0.0){real=r;imag=i;} //构造函数
complex operator + (complex c2); //运算符+重载成员函
www.eeworm.com/read/114226/15063172
h fft.h
#ifndef __FFT_H__
#define __FFT_H__
/**
* Pi for fft, float type.
*/
#define PI 3.14159265358979323846
/* Complex type.
*/
typedef struct {
float rex, imx;
} Complex;
/**
*
www.eeworm.com/read/214677/15091844
h fretrans.h
// FreTrans.h
#ifndef _INC_FreTransAPI
#define _INC_FreTransAPI
#include
using namespace std;
// 函数原型
VOID WINAPI FFT(complex * TD, complex * FD, int r);
VOID
www.eeworm.com/read/114008/15118259
h cmatrix.h
#ifndef CMATRIX_H
#define CMATRIX_H
#include
#include
#include
#include "cbuffer.h"
#include "matrix.h"
// 定义复矩阵类
class cmatrix {
public:
cbuffer