Revision a9f38bb8535cb5e7bf719da6e9070bc256a827a9 authored by MSchonewille on 09 July 2019, 07:16:54 UTC, committed by GitHub on 09 July 2019, 07:16:54 UTC
Matlab routines to analyze compensatory eye movements recorded using the Iscan system (120Hz) in mice.
1 parent 836f605
Raw File
filterit.m
function data=filterit(data,samplefreq,cutoff)

warning off;
buttercut=cutoff/(samplefreq/2);
[x,y]=butter(4,buttercut);
data=filtfilt(x,y,data);
warning on;
disp('filterit');

back to top