91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

包含一個工程文件和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

評論

共有 條評論