Expand description
ln(x)
codec implementation for the numcodecs
API.
Structs§
- Log codec which calculates
c = ln(x)
on encoding andd = exp(c)
on decoding.
Enums§
- Errors that may occur when applying the
LogCodec
.
Functions§
- Compute
exp(x)
over the elements of the inputdata
array. - Compute
exp(x)
over the elements of the inputdata
array and write them into theout
put array. - Compute
ln(x)
over the elements of the inputdata
array.