Reproducing results of Clopath et al. model of the vestibulo-ocular reflex

Contents

Detailed model with 100ms delay and vestibular decay constant = 0.03 and with alpha_d=0 (original)

clear all;

vor = VOR(100, 0, 0.03, false);
vor.Period = floor(1000/0.6);
vor.Initialize();

session = Session(vor);
session.WulffExperimentLong();
session.simulate();
session.report();

Detailed model with 100ms delay, vestibular decay constant = 0.03 and with alpha_d=0

clear all;

vor = VOR(100, 0, 0.03, false);
vor.Period = floor(1000/0.6);
vor.GCPCForgettingAlpha = 0;
vor.Initialize();

session = Session(vor);
session.WulffExperimentLong();
session.simulate();
session.report();

Detailed model with 100ms delay without vestibular decay and with alpha_d>0

clear all;

vor = VOR(100, 0, 0, false);
vor.Period = floor(1000/0.6);
vor.Initialize();

session = Session(vor);
session.WulffExperimentLong();
session.simulate();
session.report();

Detailed model with 100ms delay without vestibular decay and with alpha_d=0

clear all;

vor = VOR(100, 0, 0, false);
vor.Period = floor(1000/0.6);
vor.GCPCForgettingAlpha = 0;
vor.Initialize();

session = Session(vor);
session.WulffExperimentLong();
session.simulate();
session.report();