From b636ac2ea908b4794cbc5226ed25c55c06787da2 Mon Sep 17 00:00:00 2001 From: cjsha Date: Wed, 18 Dec 2024 13:38:11 -0500 Subject: [PATCH] Removed the equation and just left decimal number per jonnew's feedback --- OpenEphys.Onix1/NeuropixelsV2eBetaDataFrame.cs | 3 +-- OpenEphys.Onix1/NeuropixelsV2eDataFrame.cs | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/OpenEphys.Onix1/NeuropixelsV2eBetaDataFrame.cs b/OpenEphys.Onix1/NeuropixelsV2eBetaDataFrame.cs index f1d635b..3584f65 100644 --- a/OpenEphys.Onix1/NeuropixelsV2eBetaDataFrame.cs +++ b/OpenEphys.Onix1/NeuropixelsV2eBetaDataFrame.cs @@ -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 . To convert to microvolts, the following equation can be used: /// - /// 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 /// /// public Mat AmplifierData { get; } diff --git a/OpenEphys.Onix1/NeuropixelsV2eDataFrame.cs b/OpenEphys.Onix1/NeuropixelsV2eDataFrame.cs index 51a0e64..bd6a7d0 100644 --- a/OpenEphys.Onix1/NeuropixelsV2eDataFrame.cs +++ b/OpenEphys.Onix1/NeuropixelsV2eDataFrame.cs @@ -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 . To convert to microvolts, the following equation can be used: /// - /// 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 /// /// public Mat AmplifierData { get; }