- 1、本文档共10页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
C语言谱减法实现
#include stdio.h
#include stdlib.h
#include math.h
#define WL 256 // ′°3¤
#define P 10 // ?¤2a?μêy
#undef pi
#define pi 3.1415926535897932384626434
#define PI 3.1415926
#define winsize 256
#define tempsize winsize/2
#define buffsize winsize*10
typedef struct{
double real;
double img;
}complex;
unsigned int f=0;
unsigned int c=0;
complex noise[winsize];
double buff_r[buffsize];
double buff_w[buffsize];
double temp[tempsize];
complex x[winsize];
complex y[winsize];
int hr=0;
complex W[winsize];
complex W1[winsize];
double x_abs[winsize];
double y_abs[winsize];
double noise_abs[winsize];
void fft(complex *x,int size_x,complex *W); /*?ì?ù?μà?ò?±???*/
void ifft(complex *x,int size_x,complex *W1);
double angle(complex a); //
void add(complex ,complex ,complex *); /*?′êy?ó·¨*/
void mul(complex ,complex ,complex *); /*?′êy3?·¨*/
void sub(complex ,complex ,complex *); /*?′êy??·¨*/
void change(complex *x,int size_x); /*êy×é×a??*/
double abs1(complex a);
void hamming(complex hw[]);
/*int ReadWaveFile( char *fn,int *fs,short **dat );
int ReadWaveFile(
char *fn, // I: ???t??
int *fs, // O: ???t′óD?
short **dat // O: ó?ò?êy?Y
)
{
FILE *fp;
int dsize;
if ((fp = fopen(fn, rb+)) == NULL) {
fprintf(stderr, %s: No such file \n, fn); return(-1);
}
fseek(fp, 0L, SEEK_END);
dsize = ftell(fp)/2;
fseek(fp, 0L, SEEK_SET);
if ((*dat = (short *)malloc(sizeof(short)*dsize)) == NULL) {
fprintf(stderr, Memory Error \n); return(-1);
}
if (fread(*dat, sizeof(short), dsize, fp) != (unsigned int)dsize) {
free(*dat);
return(-1);
}
fclose(fp);
*fs = dsize;
return(0);
}*/
void hamming(complex hw[])
{
double x;
int i;
for(i=0;iWL;i++)
{
double cos(x);
x=2*pi*i/(WL-1);
hw[i].real=hw[i].real*(0.54-0.46*cos(x));//*32768;
}
}
void fft(complex *x,int size_x,complex *W){
int i=0,j=0,k=0,l=0,jk=0;
complex up,down,product;
change
文档评论(0)