-
Notifications
You must be signed in to change notification settings - Fork 4
/
main.c
58 lines (47 loc) · 1.02 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#include<iostream>
#include<iostream>
#include<fstream>
#include"Matrix_operation.h"
#include"mit_bih.h"
#include"sg_filt.h"
using namespace std;
#define L 3000
static double B[11][11]={0};
double y[3000]={0}; //滤波之后的数据
int main()
{
int i,j;
sg_filt(&B[0][0]); //得到滤波矩阵,B为11*11的滤波矩阵
for(i=0;i<=M;i++) //第0到M,一共M+1个点
{
for(j=0;j<N;j++)
y[i]=y[i]+B[j][i]*mit[j];
}
for(i=M+1;i<=L-M-2;i++) //第M+1到L-M-2,一共L-2M-2个点
{
for(j=0;j<N;j++)
y[i]=y[i]+B[j][M]*mit[i-M+j-1];
}
for(i=0;i<=M;i++) //第L-M-1到L-1个点,一共M+1个点
{
for(j=0;j<N;j++)
y[L-M+i-1]=y[L-M+i-1]+B[j][M+i]*mit[L-N+j];
}
//y数组为滤波之后数据
//文件输出部分,用于检测
/*
ofstream outfile;
outfile.open("E:\myfile.txt"); //myfile.txt是存放数据的文件名
if(outfile.is_open())
{
for(i=0;i<3000;i++)
{
outfile<<y[i]<<","<<endl; //message是程序中处理的数据
}
outfile.close(); }
else
{
cout<<"不能打开文件!"<<endl;
}
*/
}