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

📄 unit1.~h

📁 本程序实做MLP(Multi-layer perceptron)算法
💻 ~H
字号:
//---------------------------------------------------------------------------

#ifndef Unit1H
#define Unit1H
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Dialogs.hpp>
#include <DBGrids.hpp>
#include <Grids.hpp>
#include <Chart.hpp>
#include <ExtCtrls.hpp>
#include <Series.hpp>
#include <TeEngine.hpp>
#include <TeeProcs.hpp>
#include "TeePoin3.hpp"
#include "TeeSurfa.hpp"
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published:	// IDE-managed Components
    TButton *btnReadTrainFile;
    TLabel *Label1;
    TOpenDialog *OpenDialog1;
    TGroupBox *GroupBox1;
    TLabel *Label2;
    TEdit *Edit1;
    TEdit *Edit2;
    TEdit *Edit3;
    TLabel *Label3;
    TGroupBox *GroupBox2;
    TLabel *Label4;
    TEdit *Edit4;
    TButton *btnSetLevelNum;
    TStringGrid *StringGrid1;
    TButton *btnSetLevel;
    TGroupBox *GroupBox3;
    TButton *btnRandomW;
    TButton *btnSetW;
    TStringGrid *gridWight;
    TComboBox *ComboBox1;
    TGroupBox *GroupBox4;
    TLabel *Label5;
    TEdit *Edit5;
    TLabel *Label6;
    TEdit *Edit6;
    TButton *btnEXE;
    TRadioButton *RadioButton1;
    TRadioButton *RadioButton2;
    TLabel *Label7;
    TEdit *Edit7;
    TLabel *Label8;
    TEdit *Edit8;
    TGroupBox *GroupBox5;
    TButton *btnReadTestFile;
    TLabel *Label9;
    TEdit *Edit9;
    TLabel *Label10;
    TEdit *Edit10;
    TChart *Chart1;
    TLineSeries *Series1;
    TButton *btnDataCut;
    TFastLineSeries *Series2;
    TChart *Chart2;
    TPoint3DSeries *Series3;
    TButton *btnSaveWight;
    TButton *btnLoadWight;
    TButton *btnShowCluster;
    TRadioButton *RadioButton3;
    TRadioButton *RadioButton4;
    TPoint3DSeries *Series4;
    TPanel *Panel1;
    void __fastcall btnReadTrainFileClick(TObject *Sender);
    void __fastcall btnSetLevelNumClick(TObject *Sender);
    void __fastcall btnSetLevelClick(TObject *Sender);
    void __fastcall btnRandomWClick(TObject *Sender);
    void __fastcall btnSetWClick(TObject *Sender);
    void __fastcall ComboBox1Change(TObject *Sender);
    void __fastcall gridWightMouseDown(TObject *Sender,
          TMouseButton Button, TShiftState Shift, int X, int Y);
    void __fastcall btnEXEClick(TObject *Sender);
    void __fastcall btnReadTestFileClick(TObject *Sender);
    void __fastcall btnDataCutClick(TObject *Sender);
    void __fastcall btnSaveWightClick(TObject *Sender);
    void __fastcall btnLoadWightClick(TObject *Sender);
    void __fastcall btnShowClusterClick(TObject *Sender);
    void __fastcall RadioButton4Click(TObject *Sender);
private:	// User declarations
public:		// User declarations
    __fastcall TForm1(TComponent* Owner);

};
//---------------------------------------------------------------------------
extern PACKAGE TForm1 *Form1;
//---------------------------------------------------------------------------
#endif
 

⌨️ 快捷键说明

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