time-to-botec/squiggle/node_modules/@stdlib/stats/incr/nansum/docs/repl.txt

34 lines
731 B
Plaintext
Raw Normal View History

{{alias}}()
Returns an accumulator function which incrementally computes a sum, ignoring
`NaN` values.
If provided a value, the accumulator function returns an updated sum. If not
provided a value, the accumulator function returns the current sum.
For long running accumulations or accumulations of large numbers, care
should be taken to prevent overflow.
Returns
-------
acc: Function
Accumulator function.
Examples
--------
> var accumulator = {{alias}}();
> var s = accumulator()
null
> s = accumulator( 2.0 )
2.0
> s = accumulator( NaN )
2.0
> s = accumulator( -5.0 )
-3.0
> s = accumulator()
-3.0
See Also
--------