資料介紹
C語言實現數字信號處理算法
附錄A1 BC下復數類型的實現
1、利用BC提供的復數支持
//BC中使用復數類型使用示例(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、定義復數類,填寫相應成員函數
//C中的復數類型調用時可能不是非常好用,可自己定義復數類(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下復數類型的實現
1、利用BC提供的復數支持
//BC中使用復數類型使用示例(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、定義復數類,填寫相應成員函數
//C中的復數類型調用時可能不是非常好用,可自己定義復數類(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);
};
下載該資料的人也在下載
下載該資料的人還在閱讀
更多 >
- 數字信號處理算法電子版資源下載 0次下載
- 數字信號處理——理論、算法與實現 41次下載
- 如何使用FPGA實現數字信號處理算法的研究 16次下載
- 數字信號處理算法C語言實現PDF電子書免費下載 75次下載
- 數字信號處理算法C語言實現PDF版電子書免費下載 0次下載
- 4個重要算法C語言實現源代碼 12次下載
- 數字信號處理C語言程序集 20次下載
- PID控制算法的C語言實現(完整版) 0次下載
- 基于FPGA的數字信號處理算法研究與高效實現 40次下載
- 數字信號處理C語言程序集 13次下載
- 數字信號處理C語言程序集 0次下載
- 數字信號處理算法程序 4次下載
- 數字信號處理單片機及其應用 1次下載
- 數字信號處理-理論算法與實現 0次下載
- 數字信號處理C語言程序集
- 數字信號處理器的特點、作用及種類 1780次閱讀
- GPU在雷達信號處理算法中的優勢 819次閱讀
- 西門子博途S7-1200使用SCL語言實現雙重循環 6088次閱讀
- 利用數字信號處理器上的片上FIR和IIR硬件加速器 1232次閱讀
- C語言實現《別碰白塊》小游戲!全部代碼+思路注釋 1107次閱讀
- 怎么用C語言實現多態 1871次閱讀
- 使用C語言實現萬年歷星期速算法的源代碼免費下載 2990次閱讀
- 解答數字信號處理學什么 4925次閱讀
- C語言實現簡單的基數排序 1741次閱讀
- 數字信號處理選型和介紹 7362次閱讀
- c語言實現fifo算法及代碼 1.7w次閱讀
- c語言實現des加密算法詳細過程 3.5w次閱讀
- 數字信號處理技術的優點分析 1.1w次閱讀
- DSP是什么?詳解DSP又稱數字信號處理器 4.7w次閱讀
- 實數FFT算法的設計及其C語言實現 1w次閱讀
下載排行
本周
- 1新概念模擬電路第四冊信號處理電路電子書免費下載
- 10.69 MB | 50次下載 | 免費
- 2SL6341B USB3.2 Gen1X1 接口的的4口HUB
- 2.94 MB | 5次下載 | 免費
- 3FT-7800R對講機維修手冊附原理圖
- 3.35 MB | 2次下載 | 免費
- 4和芯潤德USB3.0HUB芯片SL6341設計資料
- 2.58 MB | 2次下載 | 免費
- 5TPS80032原理圖核對表
- 74.95KB | 2次下載 | 免費
- 6使用CR6850C設計并制作12V5A開關電源
- 1.53 MB | 2次下載 | 2 積分
- 7設計院eplan 500多頁項目圖紙
- 21.43 MB | 2次下載 | 1 積分
- 82.1 MHz類放大器電感選擇指南
- 598.3KB | 1次下載 | 免費
本月
- 1新概念模擬電路第四冊信號處理電路電子書免費下載
- 10.69 MB | 50次下載 | 免費
- 2SW6308V原理圖設計指南
- 0.75 MB | 14次下載 | 1 積分
- 3SW6308V三口多協議升降壓移動電源SOC中文手冊
- 1.61 MB | 14次下載 | 1 積分
- 4純電動汽?的主要部件及?作原理
- 5.76 MB | 12次下載 | 5 積分
- 5800VA純正弦波逆變器的參考設計
- 2.96MB | 12次下載 | 免費
- 6GP328和GP88S對講機的維修實列資料合集免費下載
- 0.03 MB | 10次下載 | 10 積分
- 7SW6308V寄存器手冊
- 1.08 MB | 10次下載 | 1 積分
- 8IP5385_DEMO開發資料
- 1.96 MB | 8次下載 | 2 積分
總榜
- 1matlab軟件下載入口
- 未知 | 935115次下載 | 10 積分
- 2開源硬件-PMP21529.1-4 開關降壓/升壓雙向直流/直流轉換器 PCB layout 設計
- 1.48MB | 420061次下載 | 10 積分
- 3Altium DXP2002下載入口
- 未知 | 233084次下載 | 10 積分
- 4電路仿真軟件multisim 10.0免費下載
- 340992 | 191364次下載 | 10 積分
- 5十天學會AVR單片機與C語言視頻教程 下載
- 158M | 183329次下載 | 10 積分
- 6labview8.5下載
- 未知 | 81581次下載 | 10 積分
- 7Keil工具MDK-Arm免費下載
- 0.02 MB | 73805次下載 | 10 積分
- 8LabVIEW 8.6下載
- 未知 | 65985次下載 | 10 積分
評論
查看更多