File: examples-modelfitting_modelfitting.txt

package info (click to toggle)
brian 1.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 23,436 kB
  • sloc: python: 68,707; cpp: 29,040; ansic: 5,182; sh: 111; makefile: 61
file content (44 lines) | stat: -rw-r--r-- 1,310 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
.. currentmodule:: brian

.. index::
   pair: example usage; loadtxt
   pair: example usage; Equations

.. _example-modelfitting_modelfitting:

Example: modelfitting (modelfitting)
====================================

Model fitting example.
Fit an integrate-and-fire model to an in-vitro electrophysiological 
recording during one second.

::

    from brian import loadtxt, ms, Equations
    from brian.library.modelfitting import *
    
    if __name__ == '__main__':
        equations = Equations('''
            dV/dt=(R*I-V)/tau : 1
            I : 1
            R : 1
            tau : second
        ''')
        input = loadtxt('current.txt')
        spikes = loadtxt('spikes.txt')
        results = modelfitting( model = equations,
                                reset = 0,
                                threshold = 1,
                                data = spikes,
                                input = input,
                                dt = .1*ms,
                                popsize = 1000,
                                maxiter = 3,
                                delta = 4*ms,
                                R = [1.0e9, 9.0e9],
                                tau = [10*ms, 40*ms],
                                refractory = [0*ms, 10*ms])
        print_table(results)