#include "cmdparam.h"
#include "lissom.h"
Include dependency graph for analyze.h:

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

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... | |
Definition in file analyze.h.
|
|
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); \
} |
|
|
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); \
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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(). |
1.2.1 written by Dimitri van Heesch,
© 1997-2000