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