home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / pc / SNNSV32.ZIP / SNNSv3.2 / xgui / sources / bn_kohonen.ph < prev    next >
Encoding:
Text File  |  1994-04-25  |  1.5 KB  |  66 lines

  1. /*****************************************************************************
  2.   FILE           : bn_kohonen.ph
  3.   SHORTNAME      : bn_kohonen
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : Bignet Kohonen Function Prototypes, private
  7.   NOTES          :
  8.  
  9.   AUTHOR         : Marc Seemann, Marcus Ritt
  10.   DATE           : July 13 1993
  11.  
  12.   CHANGED BY     : Guenter Mamier
  13.   IDENTIFICATION : @(#)bn_kohonen.ph    1.4 3/2/94
  14.   SCCS VERSION   : 1.4
  15.   LAST CHANGE    : 3/2/94
  16.  
  17.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  18.  
  19.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  20.  
  21. ******************************************************************************/
  22. #ifndef _BN_KOHONEN_DEFINED_
  23. #define  _BN_KOHONEN_DEFINED_
  24.  
  25. /* begin global definition section */
  26.  
  27. void bn_createKOHONEN (void);
  28.  
  29. /* end global definition section */
  30.  
  31.  
  32. /* begin private definition section */
  33.  
  34. static int kohonen_widget_open = 0;
  35. static Widget baseWidget;
  36. static Widget Comp, Xsize, Ysize;
  37. static int X,Y,IUnits,HUnits,OUnits;
  38.  
  39.  
  40. /* Learning function name */
  41. #define KOHONEN_LEARN_FUNC_NAME     "Kohonen"
  42.  
  43. /* Update function name */
  44. #define KOHONEN_UPDATE_FUNC_NAME    "Kohonen_Order"
  45.  
  46. /* Init function name */
  47. #define KOHONEN_INIT_FUNC_NAME      "KOHONEN_Weights"
  48.  
  49. /* bn_bignet */
  50. static void done_PROC (void);
  51. static void create_net_PROC (void);
  52.  
  53. /* bn_create_net */
  54. static void errChk(krui_err);
  55. static void bn_kohonen_createNet(void);
  56.  
  57. /* end  private definition section */
  58. #endif
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.