dialog_congress_paramter.cpp

来自「支持向量基预测的小数据量的预测方法。包括数据拟合」· C++ 代码 · 共 54 行

CPP
54
字号
// Dialog_Congress_Paramter.cpp : implementation file
//

#include "stdafx.h"
#include "svm.h"
#include "Dialog_Congress_Paramter.h"

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

/////////////////////////////////////////////////////////////////////////////
// CDialog_Congress_Paramter dialog


CDialog_Congress_Paramter::CDialog_Congress_Paramter(CWnd* pParent /*=NULL*/)
	: CDialog(CDialog_Congress_Paramter::IDD, pParent)
{
	//{{AFX_DATA_INIT(CDialog_Congress_Paramter)
//	m_X1 = 0;
//	m_X2 = 0;
//	m_X3 = 0;
//	m_X4 = 0;
//	m_X5 = 0;
//	m_X6 = 0;
	//}}AFX_DATA_INIT
}


void CDialog_Congress_Paramter::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CDialog_Congress_Paramter)
	DDX_Text(pDX, IDC_EDIT1, m_X1);
	DDX_Text(pDX, IDC_EDIT2, m_X2);
	DDX_Text(pDX, IDC_EDIT3, m_X3);
	DDX_Text(pDX, IDC_EDIT4, m_X4);
	DDX_Text(pDX, IDC_EDIT5, m_X5);
	DDX_Text(pDX, IDC_EDIT6, m_X6);
	//}}AFX_DATA_MAP
}


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

/////////////////////////////////////////////////////////////////////////////
// CDialog_Congress_Paramter message handlers

⌨️ 快捷键说明

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