https://github.com/simkind/Patch-clamp-analysis
Raw File
Tip revision: bde5c7399d9f7c789feec0ee26ab5dad4a661d90 authored by simkind on 13 January 2021, 04:40:28 UTC
Create How to use.md
Tip revision: bde5c73
dvdtoverVm.m
[d si h] = abfload('12403015_2.abf');
x = d(:,2,1);
y = diff(x);


figure,
plot(x)
title('trace')
figure,
plot(y)
title('dvdt') 
figure,
plot(x(1:end-1),y)
back to top