ManagedArrayFunctionsOfSingle.Exp Method

Definition

Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.0

Overload List

Exp(Int32, ReadOnlySpanSlice<T>, SpanSlice<T>) Computes the exponential function for each element of a span.
Exp(Int32, ReadOnlySpan<Single>, Int32, Span<Single>, Int32) Computes the exponential function for each element of a span.
Exp<TStorage>(Int32, TStorage, TStorage) Computes the exponential function for each element of an array.

Exp(Int32, ReadOnlySpan<Single>, Int32, Span<Single>, Int32)

Computes the exponential function for each element of a span.
C#
public override void Exp(
	int length,
	ReadOnlySpan<float> operand,
	int stride,
	Span<float> result,
	int resultStride
)

Parameters

length  Int32
The number of elements in the span.
operand  ReadOnlySpan<Single>
The span that holds the operands.
stride  Int32
The distance between elements in operand.
result  Span<Single>
The span that holds the results.
resultStride  Int32
The distance between elements in result.

See Also