zplat.h

来自「DSP图像处理程序源码」· C头文件 代码 · 共 35 行

H
35
字号
// Zplat.h: interface for the CZplat class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_ZPLAT_H__2D713EDA_6D67_43E8_A771_9C3B1C492CFC__INCLUDED_)
#define AFX_ZPLAT_H__2D713EDA_6D67_43E8_A771_9C3B1C492CFC__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "signal.h"
#include "complex.h"
class CZplat  
{
public:
	Dsignal top;
	Dsignal zero;
public:
	CZplat();
	void Empty();
	void InsertZero(complex comp);
	void InsertTop(complex comp);
	complex GetResponse(complex comp);
	double GetResponseAbs(complex comp);
	double GetResponseAngle(complex comp);
	Dsignal GetAllResponseAbs(int N);
	Dsignal GetAllResponseAngle(int N);
	Dsignal GetAllResponseAbs(void);
	Dsignal GetAllResponseAngle(void);
	virtual ~CZplat();

};

#endif // !defined(AFX_ZPLAT_H__2D713EDA_6D67_43E8_A771_9C3B1C492CFC__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?