Managed Array Functions Of Single.Atan 2 Method
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.1
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.1
Overload List
Atan2( | Computes the inverse tangent of each element of two arrays. |
Atan2( | 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<Single>, Int32, ReadOnlySpan<Single>, Int32, Span<Single>, Int32)
Computes the inverse tangent of each element of two arrays.
public override void Atan2(
int length,
ReadOnlySpan<float> y,
int yStride,
ReadOnlySpan<float> x,
int xStride,
Span<float> result,
int resultStride
)
Parameters
- length Int32
- The number of elements in the arrays.
- y ReadOnlySpan<Single>
- The span that holds the y-values.
- yStride Int32
- The distance between elements in y.
- x ReadOnlySpan<Single>
- The span that holds the x-values.
- xStride Int32
- The distance between elements in x.
- result Span<Single>
- The span that holds the results.
- resultStride Int32
- The distance between elements in result.