wave

来源:互联网 发布:ubuntu kill 不起作用 编辑:程序博客网 时间:2024/05/01 05:13
/***wave.h***/
#define TIME_STEP   2    //0.1us

typedef struct tag_wave_info{
  UINT32 wave_len;
  UINT32 time_step;
  UINT32 kick_point_type;

}wave_info;

typedef struct tag_point{
  UINT32 x;
  double y;
}point;

UINT get_Point_x(UINT32 input_index);

UINT get_Point_y(double input_y);

UINT32 parse_line(char *line);


0 0