-
Notifications
You must be signed in to change notification settings - Fork 125
Update syn.mod #3439
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Update syn.mod #3439
Conversation
Please ignore my prevous pull request re: this file. This is what the comment block should say.
✔️ 6b69324 -> artifacts URL |
|
✔️ 6b69324 -> Azure artifacts URL |
@@ -3,7 +3,7 @@ a synaptic current with alpha function conductance defined by | |||
i = g * (v - e) i(nanoamps), g(microsiemens); | |||
where | |||
g = 0 for t < onset and | |||
g = gmax * (t - onset)/tau * exp(-(t - onset - tau)/tau) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The - tau
looks strange but is correct given that when t - onset == tau
the value is gmax since exp(0) == 1.0
@@ -3,7 +3,7 @@ a synaptic current with alpha function conductance defined by | |||
i = g * (v - e) i(nanoamps), g(microsiemens); | |||
where | |||
g = 0 for t < onset and | |||
g = gmax * (t - onset)/tau * exp(-(t - onset - tau)/tau) | |||
g = gmax * (t - onset)/tau * exp(-(t - onset)/tau) | |||
for t > onset | |||
this has the property that the maximum value is gmax and occurs at | |||
t = delay + tau. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the delay
should be called onset
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #3439 +/- ##
=======================================
Coverage 68.38% 68.38%
=======================================
Files 682 682
Lines 116525 116525
=======================================
Hits 79684 79684
Misses 36841 36841 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Please ignore my prevous pull request re: this file. This is what the comment block should say.