ManagedArrayFunctions.Sqrt Method

Definition

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

Overload List

Sqrt(Int32, ReadOnlySpanSlice<T>, SpanSlice<T>) Computes the square root of each element of a span.
Sqrt(Int32, ReadOnlySpan<Double>, Int32, Span<Double>, Int32) Computes the square root of each element of a span.
Sqrt<TStorage>(Int32, TStorage, TStorage) Computes the square root of each element of an array.

Sqrt(Int32, ReadOnlySpan<Double>, Int32, Span<Double>, Int32)

Computes the square root of each element of a span.
C#
public override void Sqrt(
	int length,
	ReadOnlySpan<double> operand,
	int stride,
	Span<double> result,
	int resultStride
)

Parameters

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

See Also