-
Notifications
You must be signed in to change notification settings - Fork 0
/
makePlots.m
36 lines (24 loc) · 910 Bytes
/
makePlots.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
function [ output_args ] = makePlots( )
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
load(analysisParamFilename);
% I should be able to eliminate most of this
pictureLabelsTmp = pictureLabels; %note: hack to avoid overwriting list of not presented stimuli
load(picParamsFilename);
pictureLabels = pictureLabelsTmp; % conclusion of hack
channelNames = ephysParams.channelNames;
spikeChannels = ephysParams.spikeChannels;
lfpChannels = ephysParams.lfpChannels;
psthPre = psthParams.psthPre;
psthPost = psthParams.psthPost;
smoothingWidth = psthParams.smoothingWidth;
lfpPreAlign = lfpAlignParams.msPreAlign;
lfpPostAlign = lfpAlignParams.msPostAlign;
lfpPaddedBy = tfParams.movingWin(1)/2;
movingWin = tfParams.movingWin;
specgramRowAve = tfParams.specgramRowAve;
samPerMS = ephysParams.samPerMS;
if frCalcOff < frCalcOn
frCalcOff = psthImDur+frCalcOn;
end
end