 Extension
Extension//SLUGens released under the GNU GPL as extensions for SuperCollider 3, by Nick Collins, http://composerprogrammer.com/index.html
Naive Euler ODE solver implementation of the FitzHugh-Nagumo neuronal 2-dimensional model for oscillatory firing.
du/dt= rateu*(u-0.3333*u^3 - w) dw/dt= ratew*(b0+b1*u - w)
All inputs can have .kr rate UGens plugged in.
| reset | input | 
| rateu | update rate for u | 
| ratew | update rate for w | 
| b0 | equation constant | 
| b1 | equation constant | 
| initu | reset value for u | 
| initw | reset value for w |