pub fn exp_into<T: Float, D: Dimension>(
data: ArrayView<'_, T, D>,
out: ArrayViewMut<'_, T, D>,
) -> Result<(), LogCodecError>
Expand description
Compute exp(x)
over the elements of the input data
array and write them
into the out
put array.
§Errors
Errors with
LogCodecError::NonFiniteData
if any data element is non-finite (infinite or NaN)LogCodecError::MismatchedDecodeIntoArray
if thedata
array’s shape does not match theout
put array’s shape