Expand description
$\text{asinh(x)}$ codec implementation for the numcodecs API.
Structs§
- Asinh
Codec - Asinh codec, which applies a quasi-logarithmic transformation on encoding.
Enums§
- Asinh
Codec Error - 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 inputdataarray. - sinh
- Compute
$w \cdot \text{sinh}\left( \frac{x}{w} \right)$over the elements of the inputdataarray. - sinh_
into - Compute
$w \cdot \text{sinh}\left( \frac{x}{w} \right)$over the elements of the inputdataarray and write them into theoutput array.