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

📄 indialog.cpp

📁 快速敷里叶变换算法 图形显示
💻 CPP
字号:
// InDialog.cpp : implementation file
//

#include "stdafx.h"
#include "FFT.h"
#include "InDialog.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CInDialog dialog


CInDialog::CInDialog(CWnd* pParent /*=NULL*/)
	: CDialog(CInDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(CInDialog)
	m_nF = 50.0;
	m_nN = 32;
	m_nT = 0.000625;
	m_nzero = FALSE;
	//}}AFX_DATA_INIT
}

void CInDialog::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CInDialog)
	DDX_Text(pDX, IDC_EDIT1, m_nF);
	DDV_MinMaxDouble(pDX, m_nF, 0., 9999.);
	DDX_Text(pDX, IDC_EDIT2, m_nN);
	DDV_MinMaxInt(pDX, m_nN, 0, 9999);
	DDX_Text(pDX, IDC_EDIT3, m_nT);
	DDV_MinMaxDouble(pDX, m_nT, 0., 9999.);
	DDX_Check(pDX, IDC_CHECK1, m_nzero);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CInDialog, CDialog)
	//{{AFX_MSG_MAP(CInDialog)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CInDialog message handlers

⌨️ 快捷键说明

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