@@ -27,11 +27,12 @@ public Rhd2164DataFrame(ulong[] clock, ulong[] hubClock, Mat amplifierData, Mat
2727 /// </summary>
2828 /// <remarks>
2929 /// Electrophysiology samples are organized in 64xN matrix with rows representing electrophysiology
30- /// channel number and N columns representing sample index. Each column is a 64-channel vector of ADC
31- /// samples whose acquisition time is indicated by the corresponding elements in <see
32- /// cref="DataFrame.Clock"/> and <see cref="DataFrame.HubClock"/>. Each ADC sample is a 16-bit,
33- /// offset binary value encoded as a <see cref="ushort"/>. The following equation can be used to
34- /// convert a sample to microvolts:
30+ /// channel number and N columns representing sample index. Channels are ordered in accordance with
31+ /// the Rhd2164 input number specified on its datasheet (channel 0 corresponds to input 0, channel 1
32+ /// corresponds to input 1, and so on). Each column is a 64-channel vector of ADC samples whose
33+ /// acquisition time is indicated by the corresponding elements in <see cref="DataFrame.Clock"/> and
34+ /// <see cref="DataFrame.HubClock"/>. Each ADC sample is a 16-bit, offset binary value encoded as a
35+ /// <see cref="ushort"/>. The following equation can be used to convert a sample to microvolts:
3536 /// <code>
3637 /// Electrode Voltage (µV) = 0.195 × (ADC Sample – 32768)
3738 /// </code>
@@ -42,11 +43,13 @@ public Rhd2164DataFrame(ulong[] clock, ulong[] hubClock, Mat amplifierData, Mat
4243 /// Gets the buffered auxiliary data array.
4344 /// </summary>
4445 /// <remarks>
45- /// Auxiliary samples are organized in 3xN matrix with rows representing electrophysiology channel
46- /// number and N columns representing sample index. Each column is a 3-channel vector of ADC samples
47- /// whose acquisition time is indicated by the corresponding elements in <see cref="DataFrame.Clock"/>
48- /// and <see cref="DataFrame.HubClock"/>. Each ADC sample is a 16-bit <see cref="ushort"/>. The
49- /// following equation can be used to convert a sample to volts:
46+ /// Auxiliary samples are organized in 3xN matrix with rows representing auxilary channel number and N
47+ /// columns representing sample index. Channels are ordered in accordance with the Rhd2164 input
48+ /// number specified on its datasheet (channel 0 corresponds to auxiliary input 0, channel 1
49+ /// corresponds to auxiliary input 1, and channel 2 corresponds to auxiliary input 2). Each column is
50+ /// a 3-channel vector of ADC samples whose acquisition time is indicated by the corresponding
51+ /// elements in <see cref="DataFrame.Clock"/> and <see cref="DataFrame.HubClock"/>. Each ADC sample is
52+ /// a 16-bit <see cref="ushort"/>. The following equation can be used to convert a sample to volts:
5053 /// <code>
5154 /// Auxiliary Voltage (V) = 0.0000374 × ADC Sample
5255 /// </code>
0 commit comments