📄 bptrain.h
字号:
// BpTrain.h: interface for the CBpTrain class.
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_BPTRAIN_H__8895E32B_E366_4C51_8CD4_3BCF0E9A6D00__INCLUDED_)
#define AFX_BPTRAIN_H__8895E32B_E366_4C51_8CD4_3BCF0E9A6D00__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include <vector>
class CBpTrain
{
// Construction & destruction
public:
CBpTrain(const CString &strSampleName);
virtual ~CBpTrain();
//Implementation
private:
void OpenSample();
//attributes
private:
CString m_strSampleName;
typedef struct _Study_Data
{
std::vector<double> input;
std::vector<double> teach;
}Study_Data;
std::vector<Study_Data> m_vecStudyData;//学习样本
};
#endif // !defined(AFX_BPTRAIN_H__8895E32B_E366_4C51_8CD4_3BCF0E9A6D00__INCLUDED_)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -