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

📄 dialog_congress_paramter.cpp

📁 支持向量基预测的小数据量的预测方法。包括数据拟合
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -