Crate numcodecs_asinh

Source
Expand description

CI Status MSRV Latest Version Rust Doc Crate Rust Doc Main

asinh(x)\text{asinh(x)} codec implementation for the numcodecs API.

Structs§

AsinhCodec
Asinh codec, which applies a quasi-logarithmic transformation on encoding.

Enums§

AsinhCodecError
Errors that may occur when applying the AsinhCodec.

Functions§

asinh
Compute wasinh(xw)w \cdot \text{asinh}\left( \frac{x}{w} \right) over the elements of the input data array.
sinh
Compute wsinh(xw)w \cdot \text{sinh}\left( \frac{x}{w} \right) over the elements of the input data array.
sinh_into
Compute wsinh(xw)w \cdot \text{sinh}\left( \frac{x}{w} \right) over the elements of the input data array and write them into the output array.