Array Integral
- Updated2023-09-20
- 1 minute(s) read
Array Integral
C/C++ Equivalent: NISCOPE_VAL_ARRAY_INTEGRAL
The waveform is integrated using Simpson's rule, fitting a parabola to every 3 points with the equation:
y[i] = (waveform[i] + 4 × waveform[i + 1] + waveform[i + 2]) × dt/3
Units
Volts × Seconds
X Units
Seconds
Resulting Array Size
inputSize – 2