pub fn exp<T: Float, S: Data<Elem = T>, D: Dimension>(
data: ArrayBase<S, D>,
) -> Result<Array<T, D>, LogCodecError>
Expand description
Compute exp(x)
over the elements of the input data
array.
ยงErrors
Errors with
LogCodecError::NonFiniteData
if any data element is non-finite (infinite or NaN)