Crate numcodecs_asinh

Source
Expand description

CI Status MSRV Latest Version Rust Doc Crate Rust Doc Main

$\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 $w \cdot \text{asinh}\left( \frac{x}{w} \right)$ over the elements of the input data array.
sinh
Compute $w \cdot \text{sinh}\left( \frac{x}{w} \right)$ over the elements of the input data array.
sinh_into
Compute $w \cdot \text{sinh}\left( \frac{x}{w} \right)$ over the elements of the input data array and write them into the output array.