whopf.rh

来自「hopfield 算法的实现与应用。附带demo演示」· RH 代码 · 共 52 行

RH
52
字号
/*----------------------------------------------------------------------  File    : wsom.rh  Contents: Resources for self-organizing map vizualization program  Author  : Christian Borgelt  History : 07.08.2000 file created from file wnn.rh----------------------------------------------------------------------*//* --- menus --- */#define MN_MAIN       0x0100    /* Main Menu *//* --- menu items --- */#define MI_LOAD       0x0200    /* File > Load Map... */#define MI_SAVE       0x0201    /* File > Save Map... */#define MI_QUIT       0x020f    /* File > Quit */#define MI_CLEAR      0x0210    /* Actions > Clear */#define MI_NEXT       0x0211    /* Actions > Next Pattern */#define MI_STORE      0x0212    /* Actions > Store Pattern */#define MI_DELETE     0x0213    /* Actions > Delete Pattern */#define MI_INIT       0x0214    /* Actions > Initialize */#define MI_START      0x0215    /* Actions > Start Training */#define MI_STOP       0x0216    /* Actions > Stop Training */#define MI_REDRAW     0x021f    /* Actions > Redraw */#define MI_GRID       0x0220    /* Settings > Grid... */#define MI_PARAMS     0x0221    /* Settings > Parameters... */#define MI_ABOUT      0x02f0    /* Help > About WHopf... *//* --- dialog boxes --- */#define DB_ABOUT      0x0300    /* About WHopf */#define DB_GRID       0x0301    /* Grid... */#define DB_PARAMS     0x0302    /* Parameters... *//* --- dialog box items --- */#define DI_WIDTH      0x0400    /* network width */#define DI_HEIGHT     0x0401    /* network height */#define DI_GRID       0x0402    /* grid width */#define DI_MODE       0x0410    /* update mode */#define DI_DELAY      0x0411    /* delay (in seconds) *//* --- strings --- */#define CS_START      0x0001    /* 'Start Training' string */#define CS_STOP       0x0002    /* 'Stop Training'  string */#define CS_LOAD       0x0003    /* load network */#define CS_SAVE       0x0004    /* save network */#define CS_SINGLE     0x0005    /* single neuron */#define CS_ALL        0x0006    /* all neurons *//* --- bitmaps --- */#define BM_LOGO       0x0f01    /* `about' box logo */

⌨️ 快捷键说明

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