Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master' into gap_junctions
Browse files Browse the repository at this point in the history
  • Loading branch information
C.A.P. Linssen committed Aug 9, 2023
2 parents 98895b6 + 6e1c66e commit b6f37bd
Show file tree
Hide file tree
Showing 40 changed files with 935 additions and 2,350 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nestml-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
nest_branch: ["v2.20.2", "v3.0", "v3.1", "v3.2", "v3.3", "v3.4", "master"]
nest_branch: ["v2.20.2", "v3.0", "v3.1", "v3.2", "v3.3", "v3.4", "v3.5", "master"]
fail-fast: false
steps:
# Checkout the repository contents
Expand Down
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,11 @@ NESTML is free software: you can redistribute it and/or modify it under the term
NESTML is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with NESTML. If not, see <http://www.gnu.org/licenses/>.

## Acknowledgements

This software was initially supported by the JARA-HPC Seed Fund *NESTML - A modeling language for spiking neuron and synapse models for NEST* and the Initiative and Networking Fund of the Helmholtz Association and the Helmholtz Portfolio Theme *Simulation and Modeling for the Human Brain*.

This software was developed in part or in whole in the Human Brain Project, funded from the European Union's Horizon 2020 Framework Programme for Research and Innovation under Specific Grant Agreements No. 720270, No. 785907 and No. 945539 (Human Brain Project SGA1, SGA2 and SGA3).


15 changes: 15 additions & 0 deletions doc/nestml_language/nestml_language_concepts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,21 @@ The following functions are predefined in NESTML and can be used out of the box:
* - ``tanh``
- x
- Returns the hyperbolic tangent of x. The type of x and the return type are Real.
* - ``erf``
- x
- Returns the error function of x. The type of x and the return type are Real.
* - ``erfc``
- x
- Returns the complementary error function of x. The type of x and the return type are Real.
* - ``ceil``
- x
- Returns the ceil of x. The type of x and the return type are Real.
* - ``floor``
- x
- Returns the floor of x. The type of x and the return type are Real.
* - ``round``
- x
- Returns the rounded value of x. The type of x and the return type are Real.
* - ``random_normal``
- mean, std
- Returns a sample from a normal (Gaussian) distribution with parameters "mean" and "standard deviation"
Expand Down
331 changes: 37 additions & 294 deletions doc/tutorials/active_dendrite/nestml_active_dendrite_tutorial.ipynb

Large diffs are not rendered by default.

163 changes: 25 additions & 138 deletions doc/tutorials/izhikevich/nestml_izhikevich_tutorial.ipynb

Large diffs are not rendered by default.

1,326 changes: 76 additions & 1,250 deletions doc/tutorials/ornstein_uhlenbeck_noise/nestml_ou_noise_tutorial.ipynb

Large diffs are not rendered by default.

Loading

0 comments on commit b6f37bd

Please sign in to comment.