Managed Array Functions Of Single.Hypot 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
Hypot( | Computes the hypotenuse of corresponding elements of two arrays. |
Hypot( | Computes the hypotenuse of corresponding elements of two arrays. |
Hypot<TStorage>(Int32, TStorage, TStorage, TStorage) | Computes the hypotenuse of corresponding elements of two arrays. |
Hypot(Int32, ReadOnlySpan<Single>, Int32, ReadOnlySpan<Single>, Int32, Span<Single>, Int32)
Computes the hypotenuse of corresponding elements of two arrays.
public override void Hypot(
int length,
ReadOnlySpan<float> first,
int firstStride,
ReadOnlySpan<float> second,
int secondStride,
Span<float> result,
int resultStride
)
Parameters
- length Int32
- The number of elements in the span.
- first ReadOnlySpan<Single>
- The span that holds the first operands.
- firstStride Int32
- The distance between elements in first.
- second ReadOnlySpan<Single>
- The span that holds the second operands.
- secondStride Int32
- The distance between elements in second.
- result Span<Single>
- The span that holds the results.
- resultStride Int32
- The distance between elements in result.