資源簡介
通過理論結合實際,用C語言編程對MIT心電信號數據進行分析,實現低通濾波、高通濾波、QRS檢測、特征提取、心律失常分析,從中了解和掌握數字信號處理的方法和應用。

代碼片段和文件信息
//?cplxCput.cpp:?implementation?of?the?CcplxCput?class.
//
//////////////////////////////////////////////////////////////////////
#include?“stdafx.h“
#include?“cplxCput.h“
#include?“stdlib.h“
//////////////////////////////////////////////////////////////////////
//?Construction/Destruction
//////////////////////////////////////////////////////////////////////
CcplxCput::CcplxCput()
{
real?=?1;
imag?=?0;
}
CcplxCput::~CcplxCput()
{
}
CcplxCput::CcplxCput(double?rdouble?i)
{
real?=?r;
imag?=?i;
}
//////////////////////////////////////////////////////////////////////
CcplxCput?CcplxCput::operator+(CcplxCput?&s)?
{
CcplxCput?result;
result.real?=?real?+?s.real;
????result.imag?=?imag?+?s.imag;
return?result;
}
CcplxCput?CcplxCput::operator-(CcplxCput?&s)?
{
CcplxCput?result;
result.real?=?real?-?s.real;
result.imag?=?imag?-?s.imag;
return?result;
}
CcplxCput?CcplxCput::operator*(CcplxCput?&s)?
{
CcplxCput?result;
result.real?=?real*s.real?-?imag*s.imag;
result.imag?=?imag*s.real?+?real*s.imag;
return?result;
}
CcplxCput::output()
{
cout< }
/*
CcplxCput::writefile()
{
ofstream?fout(“w.txt“ios::out|ios::app);
// fout.open(“w.txt“ios::out|ios::app);
fout< fout.close();
}*/
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????11370??2003-01-14?16:22??合成好的數據文件\T100.AN
?????文件????1800000??2003-01-14?16:22??合成好的數據文件\t100.DAT
?????文件???????9365??2003-01-14?16:11??合成好的數據文件\T101.AN
?????文件????1800000??2003-01-14?16:10??合成好的數據文件\t101.dat
?????文件??????10945??2003-01-14?16:22??合成好的數據文件\T102.AN
?????文件????1800000??2003-01-14?16:22??合成好的數據文件\t102.DAT
?????文件?????510976??2008-06-11?23:20??心電信號的計算機分析final.doc
?????文件???????1343??2006-04-21?16:18??program\cplxCput.cpp
?????文件????????816??2006-04-21?16:20??program\cplxCput.h
?????文件??????12162??2009-04-19?21:16??program\Debug\cplxCput.obj
?????文件??????????0??2009-04-19?21:16??program\Debug\cplxCput.sbr
?????文件?????127046??2009-04-19?21:16??program\Debug\ECG.exe
?????文件??????14700??2009-04-19?21:16??program\Debug\ECG.obj
?????文件?????320512??2009-04-19?21:16??program\Debug\ECG.pdb
?????文件???????3896??2009-04-03?15:28??program\Debug\ECG.res
?????文件??????????0??2009-04-19?21:16??program\Debug\ECG.sbr
?????文件??????68514??2009-04-19?21:16??program\Debug\ECGDlg.obj
?????文件??????????0??2009-04-19?21:16??program\Debug\ECGDlg.sbr
?????文件??????10555??2009-04-19?21:16??program\Debug\HeartAnalyse.obj
?????文件??????????0??2009-04-19?21:16??program\Debug\HeartAnalyse.sbr
?????文件??????10440??2009-04-19?21:16??program\Debug\Parameter.obj
?????文件??????????0??2009-04-19?21:16??program\Debug\Parameter.sbr
?????文件?????105624??2009-04-19?21:16??program\Debug\StdAfx.obj
?????文件????1371790??2009-04-19?21:16??program\Debug\StdAfx.sbr
?????文件?????380928??2009-04-19?21:16??program\Debug\vc60.pdb
?????文件??????23208??2009-03-30?20:20??program\ECG.APS
?????文件???????3000??2009-04-19?21:17??program\ECG.clw
?????文件???????2021??2006-06-02?10:33??program\ECG.cpp
?????文件???????4537??2009-04-03?16:22??program\ECG.dsp
?????文件????????531??2006-06-09?14:33??program\ECG.dsw
............此處省略25個文件信息
評論
共有 條評論