Expand description
(x-o) * s codec implementation for the numcodecs API.
Structs§
- Fixed offset-scale codec which calculates
c = (x-o) / son encoding andd = (c*s) + oon decoding.
Enums§
- Errors that may occur when applying the
FixedOffsetScaleCodec.
Traits§
- Floating point types.
Functions§
- Compute
(x-o) / sover the elements of the inputdataarray. - Compute
(x*s) + oover the elements of the inputdataarray. - Compute
(x*s) + oover the elements of the inputdataarray and write them into theoutput array.