-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMakeFigure1.m
More file actions
270 lines (202 loc) · 5.29 KB
/
MakeFigure1.m
File metadata and controls
270 lines (202 loc) · 5.29 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
clear
close all
figure
rng(1)
%%%%%%%%%%%%%
% First panels b,c,d
%%%%%%%%%%%%%
load NetworkSimForFigure1bcd.mat;
%%%%%%%%%%%%%%%%%%%%%
% Make raster plot
%%%%%%%%%%%%%%%%%%%%%
% Size of circles plotted
mrkrsz=5;
% Time window over which to plot in ms
Tmax=2000;
Tmin=1000;
% Number of cells to plot
nplot=500;
% indices to plot
Iplot=find(s(1,:)>=Tmin & s(1,:)<=Tmax & s(2,:)<=nplot);
subplot(2,4,2)
plot((s(1,Iplot))/1000,s(2,Iplot),'k.','MarkerSize',mrkrsz)
axis tight
%%%%%%%%%%%%%%%%%%%%%
% Plot spike count correlation distribution
%%%%%%%%%%%%%%%%%%%%%
% counting window size
winsize=250;
% number of cells to sample
nc=1000;
% Edges for histogram
edgest=0:winsize:T;
edgesi=(1:Ne+1)-.01;
edges={edgest,edgesi};
% Find excitatory spikes,
% store into s0, which has the structure
% needed for hist3
Is=find(s(2,:)>0);
s0=s(:,Is)';
% Get 2D histogram of spike indices and times
counts=hist3(s0,'Edges',edges);
% Get rid of edges,
% the last element in each
% direction is zero
counts=counts(ceil(Tburn/winsize):end-1,1:end-1);
% Find neurons with rates >=2Hz
Igood=find(mean(counts)/winsize>1/1000);
% Randomly choose nc cells to use
% their indices are stored in Inds
temp=randperm(numel(Igood),nc);
Inds=Igood(temp);
% Store their spike counts
counts=counts(:,Inds);
% Compute their pairwise correlations
C=corrcoef(counts);
% Only keep the lower-half of the correlation matrix
% store into SCorree
[II,JJ]=meshgrid(1:size(C,1),1:size(C,1));
SCorree=C(II>JJ & isfinite(C));
% Plot correlation distribution
[h,b]=hist(SCorree,100);
h=h./trapz(b,h);
subplot(2,4,5)
plot(b,h,'k','Linewidth',2)
temp=axis;
temp(1)=-1;
temp(2)=1;
axis(temp);
%%%%%%%%%%%%%
% Plot currents
%%%%%%%%%%%%%
% Time window over which to plot in ms
Tmax=2000;
Tmin=1000;
% Time constant of filter
tauKc=15;
% Low-pass filter
Kc=exp(-abs(-5*tauKc:dt:5*tauKc)/tauKc);
Kc=Kc/sum(Kc);
IF0=Ix1e';%mean(IF);
Ie0=mean(Ie);
Ii0=mean(Ii);
% Low-pass filter currents
IF0=conv2(IF0,Kc,'same');
Ie0=conv2(Ie0,Kc,'same');
Ii0=conv2(Ii0,Kc,'same');
% Compute neurons' rehobases
Grheobase=CalcRheoBaseEIF(Cm(1),gl(1),vl(1),DeltaT(1),vT(1),vth(1),vl(1),0,10,1000,dt,20);
subplot(2,4,6)
time=dt:dt:Nt;
I=find(time>=Tmin & time<=Tmax);
plot(time(I),(Ie0(I)+Ii0(I)-mean(Ie0(I)+Ii0(I)))/Grheobase,'r','LineWidth',1.5)
hold on
plot(time(I),(IF0(I)-mean(IF0(I)))/Grheobase,'b','LineWidth',1.5)
plot(time(I),(Ie0(I)+Ii0(I)+IF0(I)-mean(Ie0(I)+Ii0(I)+IF0(I)))/Grheobase,'k','LineWidth',1.5)
%%%%%%%%%%%%%
% Now panels f,g,h
%%%%%%%%%%%%%
load NetworkSimForFigure1fgh.mat;
%%%%%%%%%%%%%%%%%%%%%
% Make raster plot
%%%%%%%%%%%%%%%%%%%%%
% Size of circles plotted
mrkrsz=5;
% Time window over which to plot in ms
Tmax=2000;
Tmin=1000;
% Number of cells to plot
nplot=500;
% indices to plot
Iplot1=find(s(1,:)>=Tmin & s(1,:)<=Tmax & s(2,:)<=nplot/2);
Iplot2=find(s(1,:)>=Tmin & s(1,:)<=Tmax & s(2,:)>Ne/2 & s(2,:)<=Ne/2+nplot/2);
Iplot=[Iplot1 Iplot2];
neuroninds=s(2,Iplot);
neuroninds(neuroninds>Ne/2)=neuroninds(neuroninds>Ne/2)-Ne/2+nplot/2;
subplot(2,4,4)
plot((s(1,Iplot))/1000,neuroninds,'k.','MarkerSize',mrkrsz)
axis tight
%%%%%%%%%%%%%%%%%%%%%
% Plot spike count correlation distribution
%%%%%%%%%%%%%%%%%%%%%
% counting window size
winsize=250;
% number of cells to sample
nc=1000;
% Edges for histogram
edgest=0:winsize:T;
edgesi=(1:Ne+1)-.01;
edges={edgest,edgesi};
% Find excitatory spikes,
% store into s0, which has the structure
% needed for hist3
Is=find(s(2,:)>0);
s0=s(:,Is)';
% Get 2D histogram of spike indices and times
counts=hist3(s0,'Edges',edges);
% Get rid of edges,
% the last element in each
% direction is zero
counts=counts(ceil(Tburn/winsize):end-1,1:end-1);
% Find neurons with rates >=2Hz
Igood=find(mean(counts)/winsize>1/1000);
% Randomly choose nc cells to use
% their indices are stored in Inds
temp=randperm(numel(Igood),nc);
Inds=Igood(temp);
% Store their spike counts
counts=counts(:,Inds);
% Compute their pairwise correlations
C=corrcoef(counts);
% Compute their "distances"
pops=(Inds<=(Ne/2));
[pops1,pops2]=meshgrid(pops,pops);
d=abs(pops1-pops2);
% Only keep the lower-half of the correlation matrix
% store into SCorree
[II,JJ]=meshgrid(1:size(C,1),1:size(C,1));
SCorree=C(II>JJ & isfinite(C));
d=d(II>JJ & isfinite(C));
% Plot correlation distribution
subplot(2,4,7)
[h,b]=hist(SCorree,100);
h=h./trapz(b,h);
plot(b,h,'k','Linewidth',2)
hold on
[h,b]=hist(SCorree(d==0),100);
h=h./trapz(b,h);
plot(b,h,'m','Linewidth',2)
[h,b]=hist(SCorree(d==1),100);
h=h./trapz(b,h);
plot(b,h,'g','Linewidth',2)
temp=axis;
temp(1)=-1;
temp(2)=1;
axis(temp);
%%%%%%%%%%%%%
% Plot currents
%%%%%%%%%%%%%
% Time window over which to plot in ms
Tmax=2000;
Tmin=1000;
% Time constant of filter
tauKc=15;
% Low-pass filter
Kc=exp(-abs(-5*tauKc:dt:5*tauKc)/tauKc);
Kc=Kc/sum(Kc);
IF0=Ix1e';%mean(IF);
Ie0=mean(Ie);
Ii0=mean(Ii);
% Low-pass filter currents
IF0=conv2(IF0,Kc,'same');
Ie0=conv2(Ie0,Kc,'same');
Ii0=conv2(Ii0,Kc,'same');
% Compute neurons' rehobases
Grheobase=CalcRheoBaseEIF(Cm(1),gl(1),vl(1),DeltaT(1),vT(1),vth(1),vl(1),0,10,1000,dt,20);
subplot(2,4,8)
time=dt:dt:Nt;
I=find(time>=Tmin & time<=Tmax);
plot(time(I),(Ie0(I)+Ii0(I)-mean(Ie0(I)+Ii0(I)))/Grheobase,'r','LineWidth',1.5)
hold on
plot(time(I),(IF0(I)-mean(IF0(I)))/Grheobase,'b','LineWidth',1.5)
plot(time(I),(Ie0(I)+Ii0(I)+IF0(I)-mean(Ie0(I)+Ii0(I)+IF0(I)))/Grheobase,'k','LineWidth',1.5)