This repository was archived by the owner on Feb 26, 2025. It is now read-only.
Replies: 1 comment 1 reply
-
They are in nA, per https://bluepyopt.readthedocs.io/en/latest/ephys/bluepyopt.ephys.stimuli.html#bluepyopt.ephys.stimuli.NrnSquarePulse In python, you can access the documenation for a function by doing:
which should help in the future. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I'm pretty new to this, so it might be something that is implied or that I don't know where in the documentation to look. What are the units for the step input amplitudes?
I frequently see code that looks like this in the examples. When I see ('step1',10) is that 10 pA?
for protocol_name, amplitude in [('step1', 10)]:
stim = ephys.stimuli.NrnSquarePulse(
step_amplitude=amplitude,
step_delay=100,
step_duration=500,
location=soma_loc,
total_duration=700)
Thanks very much!
Beta Was this translation helpful? Give feedback.
All reactions