bpnet.h
来自「bp神经网络源程序」· C头文件 代码 · 共 20 行
H
20 行
#include <iostream.h>
#include <fstream.h>
#include <math.h>
#include <string.h>
#include "InputData.h"
class CBPNet
{
public:
CBPNet(char* InFileName,int n,int m);
void BPModel();
void BPModel(char* WeightFile);
double BPFunction(double x);
void Optimize(char* OptimizeFileName,double target);
~CBPNet();
private:
CInput InputObj;
int n,m;
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?