資料介紹
C語言實(shí)現(xiàn)數(shù)字信號處理算法
附錄A1 BC下復(fù)數(shù)類型的實(shí)現(xiàn)
1、利用BC提供的復(fù)數(shù)支持
//BC中使用復(fù)數(shù)類型使用示例(ComplexUse.Cpp文件)
#include
#include
int main(void)
{
double x = 3.1, y = 4.2;
complex z = complex(x,y);
cout << "z = "<< z << "\n";
cout << " and imaginary real part = " << imag(z) << "\n";
cout << "z has complex conjugate = " << conj(z) << " \n";
return 0;
}
2、定義復(fù)數(shù)類,填寫相應(yīng)成員函數(shù)
//C中的復(fù)數(shù)類型調(diào)用時(shí)可能不是非常好用,可自己定義復(fù)數(shù)類(ComplexUse.Cpp文件)
class Complex{
public:
Complex(){}
Complex( float re, float im );
float r(){return real;};
float i(){return imag;};
float mod(){return sqrt(real*real+imag*imag);};
Complex operator+( Complex &other );
Complex operator-( Complex &other );
Complex operator*( Complex &other );
Complex operator/( Complex &other );
private:
float real, imag;
};// Operator overloaded using a member function
Complex::Complex(float re,float im){real=re;
imag=im;
};
Complex Complex::operator+( Complex &other ){
return Complex( real + other.real, imag + other.imag );
};
Complex Complex::operator-( Complex &other ){
return Complex( real - other.real, imag - other.imag );
};
Complex Complex::operator*( Complex &other ){
float x,y;
x=real*other.real-imag*other.imag;
y=real*other.imag+imag*other.real;
return Complex( x,y );
};
Complex Complex::operator/( Complex &other ){
float x,y,l;
l=other.real*other.real+other.imag*other.imag;
x=real*other.real+imag*other.imag;
y=other.real*imag-real*other.imag;
x=x/l;
y=y/l;
return Complex(x,y);
};
附錄A1 BC下復(fù)數(shù)類型的實(shí)現(xiàn)
1、利用BC提供的復(fù)數(shù)支持
//BC中使用復(fù)數(shù)類型使用示例(ComplexUse.Cpp文件)
#include
#include
int main(void)
{
double x = 3.1, y = 4.2;
complex z = complex(x,y);
cout << "z = "<< z << "\n";
cout << " and imaginary real part = " << imag(z) << "\n";
cout << "z has complex conjugate = " << conj(z) << " \n";
return 0;
}
2、定義復(fù)數(shù)類,填寫相應(yīng)成員函數(shù)
//C中的復(fù)數(shù)類型調(diào)用時(shí)可能不是非常好用,可自己定義復(fù)數(shù)類(ComplexUse.Cpp文件)
class Complex{
public:
Complex(){}
Complex( float re, float im );
float r(){return real;};
float i(){return imag;};
float mod(){return sqrt(real*real+imag*imag);};
Complex operator+( Complex &other );
Complex operator-( Complex &other );
Complex operator*( Complex &other );
Complex operator/( Complex &other );
private:
float real, imag;
};// Operator overloaded using a member function
Complex::Complex(float re,float im){real=re;
imag=im;
};
Complex Complex::operator+( Complex &other ){
return Complex( real + other.real, imag + other.imag );
};
Complex Complex::operator-( Complex &other ){
return Complex( real - other.real, imag - other.imag );
};
Complex Complex::operator*( Complex &other ){
float x,y;
x=real*other.real-imag*other.imag;
y=real*other.imag+imag*other.real;
return Complex( x,y );
};
Complex Complex::operator/( Complex &other ){
float x,y,l;
l=other.real*other.real+other.imag*other.imag;
x=real*other.real+imag*other.imag;
y=other.real*imag-real*other.imag;
x=x/l;
y=y/l;
return Complex(x,y);
};
下載該資料的人也在下載
下載該資料的人還在閱讀
更多 >
- 數(shù)字信號處理算法電子版資源下載 0次下載
- 數(shù)字信號處理——理論、算法與實(shí)現(xiàn) 41次下載
- 如何使用FPGA實(shí)現(xiàn)數(shù)字信號處理算法的研究 16次下載
- 數(shù)字信號處理算法C語言實(shí)現(xiàn)PDF電子書免費(fèi)下載 75次下載
- 數(shù)字信號處理算法C語言實(shí)現(xiàn)PDF版電子書免費(fèi)下載 0次下載
- 4個(gè)重要算法C語言實(shí)現(xiàn)源代碼 12次下載
- 數(shù)字信號處理C語言程序集 20次下載
- PID控制算法的C語言實(shí)現(xiàn)(完整版) 0次下載
- 基于FPGA的數(shù)字信號處理算法研究與高效實(shí)現(xiàn) 40次下載
- 數(shù)字信號處理C語言程序集 13次下載
- 數(shù)字信號處理C語言程序集 0次下載
- 數(shù)字信號處理算法程序 4次下載
- 數(shù)字信號處理單片機(jī)及其應(yīng)用 1次下載
- 數(shù)字信號處理-理論算法與實(shí)現(xiàn) 0次下載
- 數(shù)字信號處理C語言程序集
- 數(shù)字信號處理器的特點(diǎn)、作用及種類 1780次閱讀
- GPU在雷達(dá)信號處理算法中的優(yōu)勢 819次閱讀
- 西門子博途S7-1200使用SCL語言實(shí)現(xiàn)雙重循環(huán) 6088次閱讀
- 利用數(shù)字信號處理器上的片上FIR和IIR硬件加速器 1232次閱讀
- C語言實(shí)現(xiàn)《別碰白塊》小游戲!全部代碼+思路注釋 1107次閱讀
- 怎么用C語言實(shí)現(xiàn)多態(tài) 1871次閱讀
- 使用C語言實(shí)現(xiàn)萬年歷星期速算法的源代碼免費(fèi)下載 2990次閱讀
- 解答數(shù)字信號處理學(xué)什么 4925次閱讀
- C語言實(shí)現(xiàn)簡單的基數(shù)排序 1741次閱讀
- 數(shù)字信號處理選型和介紹 7362次閱讀
- c語言實(shí)現(xiàn)fifo算法及代碼 1.7w次閱讀
- c語言實(shí)現(xiàn)des加密算法詳細(xì)過程 3.5w次閱讀
- 數(shù)字信號處理技術(shù)的優(yōu)點(diǎn)分析 1.1w次閱讀
- DSP是什么?詳解DSP又稱數(shù)字信號處理器 4.7w次閱讀
- 實(shí)數(shù)FFT算法的設(shè)計(jì)及其C語言實(shí)現(xiàn) 1w次閱讀
下載排行
本周
- 1電子電路原理第七版PDF電子教材免費(fèi)下載
- 0.00 MB | 1489次下載 | 免費(fèi)
- 2單片機(jī)典型實(shí)例介紹
- 18.19 MB | 91次下載 | 1 積分
- 3S7-200PLC編程實(shí)例詳細(xì)資料
- 1.17 MB | 27次下載 | 1 積分
- 4筆記本電腦主板的元件識別和講解說明
- 4.28 MB | 18次下載 | 4 積分
- 5開關(guān)電源原理及各功能電路詳解
- 0.38 MB | 9次下載 | 免費(fèi)
- 6基于AT89C2051/4051單片機(jī)編程器的實(shí)驗(yàn)
- 0.11 MB | 4次下載 | 免費(fèi)
- 7基于單片機(jī)和 SG3525的程控開關(guān)電源設(shè)計(jì)
- 0.23 MB | 3次下載 | 免費(fèi)
- 8基于單片機(jī)的紅外風(fēng)扇遙控
- 0.23 MB | 3次下載 | 免費(fèi)
本月
- 1OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費(fèi)
- 2PADS 9.0 2009最新版 -下載
- 0.00 MB | 66304次下載 | 免費(fèi)
- 3protel99下載protel99軟件下載(中文版)
- 0.00 MB | 51209次下載 | 免費(fèi)
- 4LabView 8.0 專業(yè)版下載 (3CD完整版)
- 0.00 MB | 51043次下載 | 免費(fèi)
- 5555集成電路應(yīng)用800例(新編版)
- 0.00 MB | 33562次下載 | 免費(fèi)
- 6接口電路圖大全
- 未知 | 30319次下載 | 免費(fèi)
- 7Multisim 10下載Multisim 10 中文版
- 0.00 MB | 28588次下載 | 免費(fèi)
- 8開關(guān)電源設(shè)計(jì)實(shí)例指南
- 未知 | 21539次下載 | 免費(fèi)
總榜
- 1matlab軟件下載入口
- 未知 | 935053次下載 | 免費(fèi)
- 2protel99se軟件下載(可英文版轉(zhuǎn)中文版)
- 78.1 MB | 537791次下載 | 免費(fèi)
- 3MATLAB 7.1 下載 (含軟件介紹)
- 未知 | 420026次下載 | 免費(fèi)
- 4OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費(fèi)
- 5Altium DXP2002下載入口
- 未知 | 233045次下載 | 免費(fèi)
- 6電路仿真軟件multisim 10.0免費(fèi)下載
- 340992 | 191183次下載 | 免費(fèi)
- 7十天學(xué)會AVR單片機(jī)與C語言視頻教程 下載
- 158M | 183277次下載 | 免費(fèi)
- 8proe5.0野火版下載(中文版免費(fèi)下載)
- 未知 | 138039次下載 | 免費(fèi)
評論
查看更多