⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 zplat.h

📁 DSP图像处理程序源码
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -