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 inputdata
array. - sinh
- Compute
$w \cdot \text{sinh}\left( \frac{x}{w} \right)$
over the elements of the inputdata
array. - sinh_
into - Compute
$w \cdot \text{sinh}\left( \frac{x}{w} \right)$
over the elements of the inputdata
array and write them into theout
put array.