Skip to content

Commit

Permalink
Removed the equation and just left decimal number per jonnew's feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
cjsha committed Dec 18, 2024
1 parent 32d1da9 commit b636ac2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions OpenEphys.Onix1/NeuropixelsV2eBetaDataFrame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ public NeuropixelsV2eBetaDataFrame(ulong[] clock, ulong[] hubClock, Mat amplifie
/// 384 electrodes (rows) acquired at 30 kHz (columns). Each sample is a 14-bit, offset binary value
/// encoded as a <see cref="ushort"/>. To convert to microvolts, the following equation can be used:
/// <code>
/// V_electrode (µV) = 1e6/80/2^14 µV × (ADC result – 8192)
/// 1e6/80/2^14 = 0.76294
/// V_electrode (µV) = 0.76294 µV/bit × (ADC result – 8192) bits
/// </code>
/// </remarks>
public Mat AmplifierData { get; }
Expand Down
3 changes: 1 addition & 2 deletions OpenEphys.Onix1/NeuropixelsV2eDataFrame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@ public NeuropixelsV2eDataFrame(ulong[] clock, ulong[] hubClock, Mat amplifierDat
/// 384 electrodes (rows) acquired at 30 kHz (columns). Each sample is a 12-bit, offset binary value
/// encoded as a <see cref="ushort"/>. To convert to microvolts, the following equation can be used:
/// <code>
/// V_electrode (µV) = 1e6/80/2^12 µV × (ADC result – 2048)
/// 1e6/80/2^12 = 3.05176
/// V_electrode (µV) = 3.05176 µV/bit × (ADC result – 2048) bits
/// </code>
/// </remarks>
public Mat AmplifierData { get; }
Expand Down

0 comments on commit b636ac2

Please sign in to comment.