资源简介

包含一个工程文件和word文档,详细的介绍了fft的c语言实现及其对语音信号的变换

资源截图

代码片段和文件信息

#include “stdlib.h“
#include “complex.h“
CComplex::CComplex()
{
real=0;
img=0;
}
CComplex::CComplex(double a double b)
{
real=a;
img=b;
}
CComplex::~CComplex()
{
}
CComplex CComplex::operator +(CComplex &a)
{
CComplex c;
c.real=a.real+real;
c.img=a.img+img;
return c;
}
CComplex CComplex::operator -(CComplex &a)
{
CComplex c;
c.real=real-a.real;
c.img=img-a.img;
return c;
}
CComplex CComplex::operator *(CComplex &a)
{
CComplex c;
c.real=real*a.real-img*a.img;
c.img=real*a.img+img*a.real;
return c;
}

CComplex CComplex::operator =(CComplex &a)
{
CComplex c;
real=a.real;
img=a.img;
c.real=real;
c.img=img;
return c;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-03-26 11:56  实验三\
     目录           0  2013-03-26 13:57  实验三\daexp3\
     目录           0  2013-03-26 13:57  实验三\daexp3\daexp3\
     文件      306470  2013-03-26 13:57  实验三\daexp3\daexp3.zip
     文件         691  2013-03-22 16:27  实验三\daexp3\daexp3\complex.cpp
     文件         364  2012-03-02 11:18  实验三\daexp3\daexp3\complex.h
     文件        4670  2012-03-12 09:55  实验三\daexp3\daexp3\daexp3.dsp
     文件         520  2012-03-12 09:31  实验三\daexp3\daexp3\daexp3.dsw
     文件       66560  2013-03-26 13:57  实验三\daexp3\daexp3\daexp3.ncb
     文件       49664  2013-03-26 13:57  实验三\daexp3\daexp3\daexp3.opt
     文件        1361  2013-03-22 21:12  实验三\daexp3\daexp3\daexp3.plg
     目录           0  2013-03-22 21:12  实验三\daexp3\daexp3\Debug\
     文件        9605  2013-03-22 16:27  实验三\daexp3\daexp3\Debug\complex.obj
     文件      241748  2013-03-22 21:12  实验三\daexp3\daexp3\Debug\daexp3.exe
     文件      247856  2013-03-22 21:12  实验三\daexp3\daexp3\Debug\daexp3.ilk
     文件      223944  2013-03-22 21:12  实验三\daexp3\daexp3\Debug\daexp3.pch
     文件      541696  2013-03-22 21:12  实验三\daexp3\daexp3\Debug\daexp3.pdb
     文件        9405  2013-03-22 21:12  实验三\daexp3\daexp3\Debug\fft.obj
     文件        6060  2013-03-22 21:12  实验三\daexp3\daexp3\Debug\main.obj
     文件       58368  2013-03-22 21:15  实验三\daexp3\daexp3\Debug\vc60.idb
     文件       53248  2013-03-22 21:12  实验三\daexp3\daexp3\Debug\vc60.pdb
     文件       16300  2012-03-12 09:34  实验三\daexp3\daexp3\Debug\WavFileOperation.obj
     文件        1297  2013-03-26 13:57  实验三\daexp3\daexp3\fft.cpp
     文件         598  2012-03-02 11:18  实验三\daexp3\daexp3\fft.h
     文件        2014  2013-03-22 21:12  实验三\daexp3\daexp3\main.cpp
     文件        7371  2012-02-29 15:11  实验三\daexp3\daexp3\WavFileOperation.cpp
     文件        1023  2012-03-01 21:30  实验三\daexp3\daexp3\WavFileOperation.h
     文件         162  2013-03-23 17:57  实验三\~$音频实验3-音频数据的频谱分析.doc
     文件      354304  2013-03-26 11:56  实验三\数字音频实验3-音频数据的频谱分析.doc

评论

共有 条评论