Files
gonum/floats
Dan Kortschak 95704fa00e floats: add functions for handling NaN payloads
This handles the simple case of ignoring sign and only dealing with
quiet NaN values since signalling NaN would require that we check that
at least one of the low bits was set and fail somehow if not.

Note that Go treats all NaNs as silent.
2017-11-20 20:20:44 +10:30
..
2017-07-10 07:03:44 +09:30

Gonum floats GoDoc

Package floats provides a set of helper routines for dealing with slices of float64. The functions avoid allocations to allow for use within tight loops without garbage collection overhead.