pub fn exp_into<T: Float, D: Dimension>(
data: ArrayView<'_, T, D>,
out: ArrayViewMut<'_, T, D>,
) -> Result<(), LogCodecError>Expand description
Compute ${e}^{x}$ over the elements of the input data array and write
them into the output array.
§Errors
Errors with
LogCodecError::NonFiniteDataif any data element is non-finite (infinite or NaN)LogCodecError::MismatchedDecodeIntoArrayif thedataarray’s shape does not match theoutput array’s shape