Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

analyze.h File Reference

Public headers for analyze.c. More...

#include "cmdparam.h"
#include "lissom.h"

Include dependency graph for analyze.h:

Include dependency graph

This graph shows which files directly or indirectly include this file:

Included by dependency graph

Go to the source code of this file.

Defines

#define VERIFY_ORPREF_AVAILABLE(maxstale,procedure)
#define VERIFY_ODPREF_AVAILABLE(maxstale,procedure)

Functions

cmdstat cmd_copy_network ( int argc, const char *argv[] )
cmdstat cmd_measure_or_pref ( int argc, const char *argv[] )
cmdstat cmd_restore_network ( int argc, const char *argv[] )
void analyze_bubblewidth (void)
void analyze_init_hook (void)
void od_preferences (double pref[NMAX][NMAX], Neuron nmap[NMAX][NMAX])
 Calculate ocular dominance preference. More...


Detailed Description

Public headers for analyze.c.

Header:
/u/nn/cvsroot/lissom/src/analyze.h,v 1.19 2000/04/21 20:47:38 jbednar Exp

Definition in file analyze.h.


Define Documentation

#define VERIFY_ODPREF_AVAILABLE( maxstale, procedure )
 

Initializer:

\
  if (od_dumped == Uninitialized) {                                        \
    ipc_notify(IPC_ONE,IPC_ERROR,"measure_od_pref must be called before " #procedure);\
    return CMD_PREREQ_ERROR;                                               \
  }                                                                        \
  else if (learning && iteration-od_dumped > maxstale) {                   \
    ipc_notify(IPC_ONE,IPC_WARNING,"measure_od_pref was called %d iterations ago; "      \
             #procedure " data may be stale",iteration-od_dumped);         \
  }

Definition at line 25 of file analyze.h.

#define VERIFY_ORPREF_AVAILABLE( maxstale, procedure )
 

Initializer:

\
  if (or_dumped == Uninitialized) {                                        \
    ipc_notify(IPC_ONE,IPC_ERROR,"measure_or_pref must be called before " #procedure);\
    return CMD_PREREQ_ERROR;                                               \
  }                                                                        \
  else if (learning && iteration-or_dumped > maxstale) {                   \
    ipc_notify(IPC_ONE,IPC_WARNING,"measure_or_pref was called %d iterations ago; "      \
             #procedure " data may be stale",iteration-or_dumped);         \
  }

Definition at line 15 of file analyze.h.


Function Documentation

void analyze_init_hook ( void )
 

Definition at line 219 of file analyze.c.

cmdstat cmd_copy_network ( int argc,
const char * argv[] )
 

Definition at line 495 of file analyze.c.

cmdstat cmd_measure_or_pref ( int argc,
const char * argv[] )
 

Definition at line 1566 of file analyze.c.

cmdstat cmd_restore_network ( int argc,
const char * argv[] )
 

Definition at line 518 of file analyze.c.

void od_preferences ( double pref[NMAX][NMAX],
Neuron nmap[NMAX][NMAX] )
 

Calculate ocular dominance preference.

pref is a value from 0 to 1, 1 being a complete preference for the left eye (index 0) relative to the right eye(s). This is presumably meaningful only with two eyes; with one eye it should always be 1.0, and with more a preference should be calculated for each of the eyes, not just the left one.

Definition at line 1529 of file analyze.c.

Referenced by save_image_data().


Generated at Mon Aug 21 00:30:56 2000 for RF-LISSOM by doxygen1.2.1 written by Dimitri van Heesch, © 1997-2000