Skip to content

Commit

Permalink
add discription of channels and functions architecture (#473)
Browse files Browse the repository at this point in the history
Co-authored-by: simone@simoneslaptop <simone@simoneslaptop>
  • Loading branch information
simoneeb and simone@simoneslaptop authored Oct 25, 2024
1 parent e7d891f commit 84c87fc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/tutorials/05_channel_and_synapse_models.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@
"metadata": {},
"source": [
"### Your own channel\n",
"Below is how you can define your own channel. We will go into detail about individual parts of the code in the next couple of cells."
"Below is how you can define your own channel. We will go into detail about individual parts of the code in the next couple of cells.\n",
"\n",
"Note that a channel needs to have the functions `update_states` and `compute_currents` and `init_states` with all input arguments shown below. "
]
},
{
Expand Down Expand Up @@ -271,6 +273,8 @@
"\n",
"The parts below assume that you have already learned how to [build network simulations in `Jaxley`](https://jaxleyverse.github.io/jaxley/latest/tutorial/02_small_network/).\n",
"\n",
"Note that again, a synapse needs to have the two functions `update_states` and `compute_current` with all input arguments shown below. \n",
"\n",
"The below is an example of how to define your own synapse model in `Jaxley`:`"
]
},
Expand Down

0 comments on commit 84c87fc

Please sign in to comment.