ManagedArrayFunctions.Atan2 Method

Definition

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

Overload List

Atan2(Int32, ReadOnlySpanSlice<T>, ReadOnlySpanSlice<T>, SpanSlice<T>) Computes the inverse tangent of each element of two arrays.
Atan2(Int32, ReadOnlySpan<Double>, Int32, ReadOnlySpan<Double>, Int32, Span<Double>, Int32) Computes the inverse tangent of each element of two arrays.
Atan2<TStorage>(Int32, TStorage, TStorage, TStorage) Computes the inverse tangent of each element of two arrays.

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

Computes the inverse tangent of each element of two arrays.
C#
public override void Atan2(
	int length,
	ReadOnlySpan<double> y,
	int yStride,
	ReadOnlySpan<double> x,
	int xStride,
	Span<double> result,
	int resultStride
)

Parameters

length  Int32
The number of elements in the arrays.
y  ReadOnlySpan<Double>
The span that holds the y-values.
yStride  Int32
The distance between elements in y.
x  ReadOnlySpan<Double>
The span that holds the x-values.
xStride  Int32
The distance between elements in x.
result  Span<Double>
The span that holds the results.
resultStride  Int32
The distance between elements in result.

See Also