Location: Hodgkin & Huxley (1952) model @ 7afd99617b3d / BG / scripts_BG / HH_gate_m.m

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-03-18 13:14:54+13:00
Desc:
Add other parameter print out in the gate_ss; The current setting gives around 20 mV peak of AP, it seems that the m gate doesn't open fast enough.
Permanent Source URI:
https://models.fieldml.org/workspace/64f/rawfile/7afd99617b3d38378c96a34888a5321593b3bef2/BG/scripts_BG/HH_gate_m.m

function [alpha_m,beta_m]=HH_gate_m(V,phi)

alpha_m = 0.1 .* (V + 25) .* phi ./ (exp( (V + 25) ./ 10) -1 );
beta_m = 4 .* exp( V ./ 18 ) .* phi;
TF = isnan(alpha_m); % handle /0
alpha_m(TF)=1;
end