Skip to content

Commit

Permalink
readthedocs update 6
Browse files Browse the repository at this point in the history
  • Loading branch information
gitmv committed Aug 14, 2023
1 parent 42f9ecb commit 38e4ff1
Show file tree
Hide file tree
Showing 7 changed files with 342 additions and 354 deletions.
4 changes: 2 additions & 2 deletions Examples_Classical/Izhikevich.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ def iteration(self, n):
My_Network = Network()

N_e = NeuronGroup(net=My_Network, tag='excitatory_neurons', size=get_squared_dim(800), behavior={
1: Izhikevich_main(a=0.02, b=0.2, c=-65, d=8.0, v='0;-65', u='0;-8.0'),
1: Izhikevich_main(a=0.02, b=0.2, c=-65, d=8.0, v=-65, u=-8.0),
2: Izhikevich_input(),
9: Recorder(['v', 'u', 'fired'], tag='my_recorder')
})

N_i = NeuronGroup(net=My_Network, tag='inhibitory_neurons', size=get_squared_dim(200), behavior={
1: Izhikevich_main(a=0.02, b=0.2, c=-65, d=8.0, v='0;-65', u='0;-8.0'),
1: Izhikevich_main(a=0.02, b=0.2, c=-65, d=8.0, v=-65, u=-8.0),
2: Izhikevich_input(),
9: Recorder(['v', 'u', 'fired'], tag='my_recorder')
})
Expand Down
4 changes: 2 additions & 2 deletions docs/Classical/Izhikevich.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ class Izhikevich_input(Behavior):
My_Network = Network()

N_e = NeuronGroup(net=My_Network, tag='excitatory_neurons', size=get_squared_dim(800), behavior={
1: Izhikevich_main(a=0.02, b=0.2, c=-65, d=8.0, v='0;-65', u='0;-8.0'),
1: Izhikevich_main(a=0.02, b=0.2, c=-65, d=8.0, v=-65, u=-8.0),
2: Izhikevich_input(),
9: Recorder(['v', 'u', 'fired'], tag='my_recorder')
})

N_i = NeuronGroup(net=My_Network, tag='inhibitory_neurons', size=get_squared_dim(200), behavior={
1: Izhikevich_main(a=0.02, b=0.2, c=-65, d=8.0, v='0;-65', u='0;-8.0'),
1: Izhikevich_main(a=0.02, b=0.2, c=-65, d=8.0, v=-65, u=-8.0),
2: Izhikevich_input(),
9: Recorder(['v', 'u', 'fired'], tag='my_recorder')
})
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ nav:
- -Complex Network: Complex_Tutorial/Complex.md

- Behavior Examples:
- -Default Homeostatic Mechanism: Behaviors/Default_homeostatic_mechanism.md
- -Refractory Period: Behaviors/Refractory_Period.md
- -NOX Diffusion: Behaviors/NOX_Diffusion.md

Expand All @@ -53,7 +52,6 @@ nav:
- User Interface Tabs:
- -Custom UI Tab: UI/cutom_ui_tab.md
- -Default Tabs: UI/Default.md
- -Advanced Tabs: UI/Advanced_Tabs.md
- -Text Input Tabs: UI/Text_Input_Tabs.md
- -Basic Tab: UI/Basic_Tab.md
- -OpenGL Tab: UI/OpenGLTab.md
Expand Down
Loading

0 comments on commit 38e4ff1

Please sign in to comment.