资源简介
通过理论结合实际,用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个文件信息
评论
共有 条评论