Crate numcodecs_log
source ·Expand description
ln(x+1) codec implementation for the numcodecs API.
Structs§
- Log codec which calculates
c = log(1+x)on encoding andd = exp(c)-1on decoding.
Enums§
- Errors that may occur when applying the
LogCodec.
Traits§
- Floating point types.
Functions§
- Compute
exp(x)-1over the elements of the inputdataarray. - Compute
exp(x)-1over the elements of the inputdataarray and write them into theoutput array. - Compute
ln(x+1)over the elements of the inputdataarray.