-
Notifications
You must be signed in to change notification settings - Fork 2
/
diagonal.m
511 lines (438 loc) · 14 KB
/
diagonal.m
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
function diagonal(action)
%VSRFPlot Plots data files of 2 independant variables
% The raw VS text file is used as input
% Does not require any input variables as everything is GUI driven
global angles;
global PlotType;
global version;
global PlotData;
global XValues;
global YValues;
global CMap;
global DataType;
global ShadingType;
global bins;
global time;
if nargin<1,
action='Initialize';
end
switch(action) %As we use the GUI this switch allows us to
%respond to the user input
%%%%%%%%%%%%%%%%%%Initialise%%%%%%%%%%%%%%%%%%%%
case 'Initialize'
version='Diagonal Plotter V1.0a';
PlotType='CheckerBoard';
CMap='jet';
ShadingType='interp';
angles='';
DataType='pstX';
diagonalfig2; %this is our GUI file that we call to load
set(gcf,'Name', version); %Sets Version data
datamenu={'pstX';'pstY';'pstXQ';'pstYQ';'pstDR';'pstDRQ';'pstD';'pstD2';'XCHIS'};
set(findobj('Tag','DataSetMenu'),'String',datamenu);
set(findobj('Tag','DataSetMenu'),'Value',1);
%%%%%%%%%%%%%%%%%Load Data%%%%%%%%%%%%%%%%%%%%%%
case 'Load'
[fname,pname] = uigetfile('*.*','Find Directory and Any File:');
cd(pname);
file=fname(1:size(fname,2)-4);
windowtitle='Please Select Files and Information:';
prompt={'First extension to use: ','Last extension to use: ',...
'Experiment:','Run:','Other Info:'};
def={'001','047','LGCOR','',''};
answer=inputdlg(prompt,windowtitle,1,def);
firstext=str2num(char(answer(1)));
lastext=str2num(char(answer(2)));
exp=char(answer(3));
run=char(answer(4));
info=char(answer(5));
header=strcat(exp,'-',run,' [histograms= ',num2str(firstext),':',...
num2str(lastext),'] {',info,'}');
a=1;
for i=firstext:2:lastext
if i<10;
filename=strcat(file,'.00',num2str(i));
load(filename);
elseif i>=10;
if i>=100;
filename=strcat(file,'.',num2str(i));
load(filename);
else
filename=strcat(file,'.0',num2str(i));
load(filename);
end
end
angles(a).header=header;
bins=hists(3);
angles(a).info=hists(1:3);
abin=4;
bbin=4+bins-1;
angles(a).pstX=hists(abin:bbin);
abin=bbin+1;
bbin=abin+bins-1;
angles(a).pstY=hists(abin:bbin);
abin=bbin+1;
bbin=abin+bins-1;
angles(a).pstXQ=hists(abin:bbin);
abin=bbin+1;
bbin=abin+bins-1;
angles(a).pstYQ=hists(abin:bbin);
abin=bbin+1;
bbin=abin+(bins*2)-1;
angles(a).pstDR=hists(abin:bbin);
abin=bbin+1;
bbin=abin+(bins*2)-1;
angles(a).pstDRQ=hists(abin:bbin);
abin=bbin+1;
bbin=abin+(bins*2)-1;
angles(a).pstD=hists(abin:bbin);
abin=bbin+1;
bbin=abin+(bins*2)-1;
angles(a).pstD2=hists(abin:bbin);
abin=bbin+1;
bbin=abin+(bins*2)-1;
angles(a).XCHIS=hists(abin:bbin);
a=a+1;
clear hists
end
diagplot('Main');
%%%%%%%%%%%%%Copies figure for output%%%%%%%%%%%%%%%%%%%%%%%%
case 'Spawn'
if isempty(angles)
errordlg('No File Specified',version);
else
SpawnPlot;
end
%%%%%%%%%%%%%%%%%%%Various call from the GUI%%%%%%%%%%%%%%%%%
case 'PlotOpts' %change the type of plot
Value=get(gcbo,'Value');
String=get(gcbo,'String');
PlotType=String{Value};
diagplot('Main');
case 'DataSet' %change the data set
diagplot('Main');
case 'ShadingOpts' %change shading
Value=get(gcbo,'Value');
String=get(gcbo,'String');
ShadingType=String{Value};
switch(ShadingType)
case 'Flat'
ShadingType='flat';
shading(ShadingType);
case 'Interpolated'
ShadingType='interp';
shading(ShadingType);
case 'Faceted'
ShadingType='faceted';
shading(ShadingType)
end
case 'Close'
clear all;
close(gcf);
end %end switch
function diagplot(call)
%Internal function to plot the RF data according to the user options
global angles;
global plothandle;
global PlotType;
global XValues;
global YValues;
global CMap;
global ShadingType;
global InterType;
global DataType;
global data;
%%%Find what the options are%%%
Value=get(findobj('Tag','DataSetMenu'),'Value');
String=get(findobj('Tag','DataSetMenu'),'String');
DataType=String{Value};
if call=='Main'
axes(findobj('Tag','MainAxis')); %sets to main axes
else
axes(call)
end
switch DataType
case 'pstX'
data=ones(size(angles(1).pstX,1),size(angles,2));
for i=1:size(angles,2);
data(:,i)=angles(i).pstX;
end
XValues=1:(size(data,2));
binwidth=angles(1).info(2)/(angles(1).info(3)-1);
YValues=0:binwidth:angles(1).info(2);
set(findobj('Tag','InfoText'),'String','Diagonal Plotter: Raw X PSTH');
case 'pstY'
data=ones(size(angles(1).pstY,1),size(angles,2));
for i=1:size(angles,2);
data(:,i)=angles(i).pstY;
end
XValues=1:(size(data,2));
binwidth=angles(1).info(2)/(angles(1).info(3)-1);
YValues=0:binwidth:angles(1).info(2);
set(findobj('Tag','InfoText'),'String','Diagonal Plotter: Raw Y PSTH');
case 'pstXQ'
data=ones(size(angles(1).pstXQ,1),size(angles,2));
for i=1:size(angles,2);
data(:,i)=angles(i).pstXQ;
end
XValues=1:(size(data,2));
binwidth=angles(1).info(2)/(angles(1).info(3)-1);
YValues=0:binwidth:angles(1).info(2);
set(findobj('Tag','InfoText'),'String','Diagonal Plotter: Squared X PSTH');
case 'pstYQ'
data=ones(size(angles(1).pstYQ,1),size(angles,2));
for i=1:size(angles,2);
data(:,i)=angles(i).pstYQ;
end
XValues=1:(size(data,2));
binwidth=angles(1).info(2)/(angles(1).info(3)-1);
YValues=0:binwidth:angles(1).info(2);
set(findobj('Tag','InfoText'),'String','Diagonal Plotter: Squared X PSTH');
case 'pstDR'
data=ones(size(angles(1).pstDR,1),size(angles,2));
for i=1:size(angles,2);
data(:,i)=angles(i).pstDR;
end
XValues=1:(size(data,2));
binwidth=angles(1).info(2)/(angles(1).info(3)*2-1);
YValues=0:binwidth:angles(1).info(2);
set(findobj('Tag','InfoText'),'String','Diagonal Plotter: Raw Diagonal');
case 'pstDRQ'
data=ones(size(angles(1).pstDRQ,1),size(angles,2));
for i=1:size(angles,2);
data(:,i)=angles(i).pstDRQ;
end
XValues=1:(size(data,2));
binwidth=angles(1).info(2)/(angles(1).info(3)*2-1);
YValues=0:binwidth:angles(1).info(2);
set(findobj('Tag','InfoText'),'String','Diagonal Plotter: Squared Diagonal');
case 'pstD'
data=ones(size(angles(1).pstD,1),size(angles,2));
for i=1:size(angles,2);
data(:,i)=angles(i).pstD;
end
XValues=1:(size(data,2));
binwidth=angles(1).info(2)/(angles(1).info(3)*2-1);
YValues=0:binwidth:angles(1).info(2);
set(findobj('Tag','InfoText'),'String','Diagonal Plotter: Diagonal');
case 'pstD2'
data=ones(size(angles(1).pstD2,1),size(angles,2));
for i=1:size(angles,2);
data(:,i)=angles(i).pstD2;
end
XValues=1:(size(data,2));
binwidth=angles(1).info(2)/(angles(1).info(3)*2-1);
YValues=0:binwidth:angles(1).info(2);
set(findobj('Tag','InfoText'),'String','Diagonal Plotter: Smoothed Diagonal');
case 'XCHIS' %this will be different to the others
data=ones(size(angles(1).XCHIS,1),size(angles,2));
for i=1:size(angles,2);
data(:,i)=angles(i).XCHIS;
end
x=size(data,1)/4;
data=data(x+1:x*3,:); %cursor in to the central portion
XValues=1:(size(data,2));
binwidth=angles(1).info(2)/(angles(1).info(3)*2-1);
start=angles(1).info(2)/4-((angles(1).info(2)/4)*2);
finish=angles(1).info(2)/4;
YValues=start:finish*2/(size(data,1)-1):finish;
set(findobj('Tag','InfoText'),'String','Diagonal Plotter: Cross Correlogram');
end
switch(PlotType) %For different plots
case 'Raw Data'
imagesc(XValues,YValues,data)
set(gca,'YDir','normal')
case 'Mesh'
mesh(XValues,YValues,data)
shading(ShadingType)
%axis vis3d
case 'CheckerBoard'
pcolor(XValues,YValues,data)
shading(ShadingType)
case 'CheckerBoard+Contour'
pcolor(XValues,YValues,data)
shading(ShadingType)
hold on
[c,h] = contour(XValues,YValues,data,'k'); clabel(c,h)
hold off
case 'Surface'
surf(XValues,YValues,data)
shading(ShadingType)
%axis vis3d
case 'Lighted Surface'
material metal
surfl(XValues,YValues,data)
shading(ShadingType)
%axis vis3d
case 'Surface+Contour'
surfc(XValues,YValues,data)
shading(ShadingType)
%axis vis3d
case 'Contour'
[c,h] = contour(XValues,YValues,data); clabel(c,h)
case 'Filled Contour'
[c,h] = contourf(XValues,YValues,data); clabel(c,h)
case 'Waterfall'
waterfall(XValues,YValues,data)
%axis vis3d
end
if strcmp(DataType,'XCHIS')==1;
x=[min(XValues),max(XValues)];
y=[0,0];
line(x,y);
axis tight;
else
axis tight;
end
colormap(CMap);
if strcmp(call,'Main')==1 %draw the X and Y sum histograms
set(gca,'XTick',[])
set(gca,'YTick',[])
axes(findobj('Tag','XAxis')); %sets to X axis
histx=sum(data,1);
bar(XValues,histx,'b-',1);
xlabel('angles (deg)','FontSize', 6)
set(gca,'Tag','XAxis')
set(gca,'FontSize',7);
axis tight
axes(findobj('Tag','YAxis')); %sets to Y axis
histy=sum(data,2)';
bar(YValues,histy,'k-',1);
set(gca,'CameraUpVector',[1 0 0]);
%xlabel('Time (msec)','FontSize', 8);
set(gca,'XAxisLocation','top')
set(gca,'Tag','YAxis');
set(gca,'FontSize',7);
axis tight;
axes(findobj('Tag','MainAxis')); %sets to main axes
end
function SpawnPlot()
%Outputs a Summary figure, hopefully multiaxis
global data
global XValues
global YValues
global angles
cmap=get(gcf,'ColorMap');
header=angles(1).header;
diagoutput;
set(findobj('Tag','TitleText'),'String',header);
for i=1:4
if i==1
h=findobj('Tag','MainAx1');
set(findobj('Tag','DataSetMenu'),'Value',1);
diagplot(h);
colormap(cmap);
set(findobj('Tag','Text1'),'String','Cell 1 PSTH');
set(gca,'XTick',[])
set(gca,'YTick',[])
axes(findobj('Tag','XAx1')); %sets to X axis
histx=sum(data,1);
bar(XValues,histx,'b-',1);
axis tight
%xlabel('angles (deg)','FontSize', 7)
set(gca,'Tag','XAx1')
set(gca,'FontSize',7);
axes(findobj('Tag','YAx1')); %sets to Y axis
histy=sum(data,2)';
bar(YValues,histy,'k-',1);
axis tight;
set(gca,'CameraUpVector',[1 0 0]);
%xlabel('Time (msec)','FontSize', 8);
set(gca,'XAxisLocation','top')
set(gca,'Tag','YAx1');
set(gca,'FontSize',7);
axes(findobj('Tag','ColorBar1')); %sets to colorbar axis
makecbar(cmap)
elseif i==2
h=findobj('Tag','MainAx2');
set(findobj('Tag','DataSetMenu'),'Value',2);
diagplot(h);
colormap(cmap);
set(findobj('Tag','Text2'),'String','Cell 2 PSTH');
set(gca,'XTick',[])
set(gca,'YTick',[])
axes(findobj('Tag','XAx2')); %sets to X axis
histx=sum(data,1);
bar(XValues,histx,'b-',1);
axis tight
%xlabel('angles (deg)','FontSize', 7)
set(gca,'Tag','XAx2')
set(gca,'FontSize',7);
axes(findobj('Tag','YAx2')); %sets to Y axis
histy=sum(data,2)';
bar(YValues,histy,'k-',1);
axis tight;
set(gca,'CameraUpVector',[1 0 0]);
%xlabel('Time (msec)','FontSize', 8);
set(gca,'XAxisLocation','top')
set(gca,'Tag','YAx2');
set(gca,'FontSize',7);
axes(findobj('Tag','ColorBar2')); %sets to colorbar axis
makecbar(cmap)
elseif i==3
h=findobj('Tag','MainAx3');
set(findobj('Tag','DataSetMenu'),'Value',8);
diagplot(h);
colormap(cmap);
set(findobj('Tag','Text3'),'String','Smoothed Diagonal');
set(gca,'XTick',[])
set(gca,'YTick',[])
axes(findobj('Tag','XAx3')); %sets to X axis
histx=sum(data,1);
bar(XValues,histx,'b-',1);
axis tight
%xlabel('angles (deg)','FontSize', 7)
set(gca,'Tag','XAx3')
set(gca,'FontSize',7);
axes(findobj('Tag','YAx3')); %sets to Y axis
histy=sum(data,2)';
bar(YValues,histy,'k-',1);
axis tight;
set(gca,'CameraUpVector',[1 0 0]);
%xlabel('Time (msec)','FontSize', 8);
set(gca,'XAxisLocation','top')
set(gca,'Tag','YAx3');
set(gca,'FontSize',7);
axes(findobj('Tag','ColorBar3')); %sets to colorbar axis
makecbar(cmap)
elseif i==4
h=findobj('Tag','MainAx4');
set(findobj('Tag','DataSetMenu'),'Value',9);
diagplot(h);
colormap(cmap);
set(findobj('Tag','Text4'),'String','Xcor Histogram');
set(gca,'XTick',[])
set(gca,'YTick',[])
axes(findobj('Tag','XAx4')); %sets to X axis
histx=sum(data,1);
bar(XValues,histx,'b-',1);
axis tight
%xlabel('angles (deg)','FontSize', 7)
set(gca,'Tag','XAx4')
set(gca,'FontSize',7);
axes(findobj('Tag','YAx4')); %sets to Y axis
histy=sum(data,2)';
bar(YValues,histy,'k-',1);
axis tight;
set(gca,'CameraUpVector',[1 0 0]);
%xlabel('Time (msec)','FontSize', 8);
set(gca,'XAxisLocation','top')
set(gca,'Tag','YAx4');
set(gca,'FontSize',7);
axes(findobj('Tag','ColorBar4')); %sets to colorbar axis
makecbar(cmap)
end
end
function makecbar(cmap)
%Used to generate the Colorbar for each plot on the spawn
global data
global XValues
global YValues
maximum=max(max(data));
s=size(data,1);
colorrange=(0:maximum/(s-1):maximum)';
y=colorrange;
x=[0 1];
colorrange(:,2)=colorrange;
pcolor(x,y,colorrange)
shading flat