www.pudn.com > QQandSample.rar > SigStruct.h
#ifndef __SIGNDATA_H__
#define __SIGNDATA_H__
//波形数据结构
typedef struct SignalType
{
long a; //模拟信号的增益
long f; //模拟信号的基频
float ph; //模拟信号的相位
double *data; //信号数组
long n ; //信号数组的大小
float fs; //模拟信号的采集频率
HWND hWnd;
}type_signal;
#endif