We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea1408e commit d82d09bCopy full SHA for d82d09b
neo/rawio/neuroscoperawio.py
@@ -93,6 +93,8 @@ def _parse_header(self):
93
channel_group[int(xml_rc.text)] = grp_index
94
95
sig_dtype = "int16"
96
+ # scale to convert sample values to voltage in mV = range of recording in volts *
97
+ # 1000 mV/V /(number of bits * amplification)
98
if nbits == 16:
99
gain = voltage_range * 1000 / (2**nbits) / amplification
100
# ~ elif nbits==32:
0 commit comments