Neural modeling of an internal clock (Yamazaki and Tanaka 2008)

 Download zip file 
Help downloading and running models
Accession:115966
"We studied a simple random recurrent inhibitory network. Despite its simplicity, the dynamics was so rich that activity patterns of neurons evolved with time without recurrence due to random recurrent connections among neurons. The sequence of activity patterns was generated by the trigger of an external signal, and the generation was stable against noise.... Therefore, a time passage from the trigger of an external signal could be represented by the sequence of activity patterns, suggesting that this model could work as an internal clock. ..."
Reference:
1 . Yamazaki T, Tanaka S (2005) Neural modeling of an internal clock. Neural Comput 17:1032-58 [PubMed]
Citations  Citation Browser
Model Information (Click on a link to find other models with that property)
Model Type: Realistic Network;
Brain Region(s)/Organism: Cerebellum;
Cell Type(s):
Channel(s):
Gap Junctions:
Receptor(s):
Gene(s):
Transmitter(s):
Simulation Environment: C or C++ program;
Model Concept(s): Temporal Pattern Generation; Spatio-temporal Activity Patterns; Rate-coding model neurons;
Implementer(s):
CC = gcc
CFLAGS = -O2 -Wall

MTSRC = mt19937ar-cok.c
MTOBJ = $(MTSRC:.c=.o)

all: internalclock similarity

internalclock: internalclock.o $(MTOBJ)
	$(CC) $(CFLAGS) -o $@ $@.o $(MTOBJ) -lm

similarity: similarity.o
	$(CC) $(CFLAGS) -o $@ $@.o -lgd -lm

clean:
	rm -f *.o internalclock similarity