git.schokokeks.org
Repositories
Help
Report an Issue
SVMCrossVal.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
85b7093
Branches
Tags
master
SVMCrossVal.git
private
getTimeLineParams.m
started save/load functionality.
Christoph Budziszewski
commited
85b7093
at 2009-02-18 15:59:39
getTimeLineParams.m
Blame
History
Raw
% generate parameter structs for subroutines function timelineParams = getTimeLineParams(paramModel) timelineParams = struct; timelineParams.frameShiftStart = getDouble(paramModel.txtFrameShiftStart); % -20; timelineParams.frameShiftEnd = getDouble(paramModel.txtFrameShiftEnd); %15; timelineParams.decodeDuration = getDouble(paramModel.txtFrameShiftDur); timelineParams.psthStart = getDouble(paramModel.txtPSTHStart); % -25; timelineParams.psthEnd = getDouble(paramModel.txtPSTHEnd); % 20; timelineParams.baselineStart = getDouble(paramModel.txtBaselineStart); % -22; timelineParams.baselineEnd = getDouble(paramModel.txtBaselineEnd); % -20; end