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 9af54a2 commit 2259bedCopy full SHA for 2259bed
src/pynwb/base.py
@@ -343,14 +343,17 @@ def get_data_in_units(self):
343
.. math::
344
out = data * conversion + offset
345
346
- If the field 'channel_conversion' is present, the conversion factor is applied to each channel separately:
+ If the field 'channel_conversion' is present, the conversion factor for each channel is additionally applied
347
+ to each channel:
348
349
- out_{channel} = data * conversion_{channel} + offset
350
+ out_{channel} = data * conversion * conversion_{channel} + offset
351
+
352
+ NOTE: This will read the entire dataset into memory.
353
354
Returns
355
-------
- np.ndarray
356
+ :class:`numpy.ndarray`
357
358
"""
359
if "channel_conversion" in self.fields:
0 commit comments