-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathQIF_gen_spike_matrix.cpp
74 lines (62 loc) · 2.47 KB
/
QIF_gen_spike_matrix.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#include "LIF_spike.h"
using namespace std;
void LIF_spike::QIF_gen_spike_matrix()
{
int tt=0, nn=0, index=0;
double current_time=0;
double eta=0, eta_c=0;
// To keep track of the number of spikes
vector<int> num_spikes(N,0);
// Contains the times of the last spikes
vector<double> spike_times(N,0);
// Initialize the voltages at the reset potential
vector<double> V(N,VRESET), Vold(N,VRESET);
// Calculate constants outside loop for speed
double sqrtcorr = sqrt(DT)*sigma*sqrt(lambda);
double sqrtonemcorr = sqrt(DT)*sigma*sqrt(1-lambda);
//double C1 = exp(-DT/TAU);
//double C2 = sigma*sqrt(TAU*(1-C1*C1)/2);
double Vavg=0;
//cout << C1 <<" "<<C2 <<endl;
for (tt=0; tt<TOT_INT_TIME; ++tt)
{
current_time = tt*DT;
// Common gaussian input to each neuron
// Changes over only each time step
eta_c = gsl_ran_gaussian_ziggurat(r,1);
for (nn=0; nn<N; ++nn)
{
// Independent gaussian input
eta = gsl_ran_gaussian_ziggurat(r,1);
if (num_spikes[nn] == 0 ||
((current_time - spike_times[nn]) > AbsRefractPts))
{
// Exact update algorithm
//V[nn] = Vold[nn]*C1 + C2*sqrtcorr*eta_c +
//C2*sqrtonemcorr*eta + (1-C1)*gamma;
V[nn] = Vold[nn]-DT*Vold[nn]/TAU + DT*gamma+
DT*(Vold[nn]-SOFT_THRESH)*
(Vold[nn]-SOFT_THRESH)/DELTAT+
sqrtcorr*eta_c + sqrtonemcorr*eta;
// Threshold crossing
if (V[nn] > THRESHOLD)
{
++num_spikes[nn];
spike_times[nn] = current_time;
index = (int)floor(current_time/T_BINNING);
spikes(index,nn) += 1;
V[nn] = VRESET;
}
}
else
{
V[nn] = Vold[nn];
}
Vold[nn] = V[nn];
}
Vavg += V[0];
//cout << V[0] << endl;
}
Vavg /= TOT_INT_TIME;
cout << Vavg << endl;
}