ManagedArrayFunctionsOfSingle.Divide Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4

Overload List

Divide(Int32, ArraySlice<Single>, ArraySlice<Single>, ArraySlice<Single>) Divides each element of an array by the corresponding element in another array.
Divide(Int32, Single, ArraySlice<Single>, ArraySlice<Single>) Divides a number by each element of an array.

Divide(Int32, ArraySlice<Single>, ArraySlice<Single>, ArraySlice<Single>)

Divides each element of an array by the corresponding element in another array.
C#
public override void Divide(
	int length,
	ArraySlice<float> first,
	ArraySlice<float> second,
	ArraySlice<float> result
)

Parameters

length  Int32
The number of elements in the array.
first  ArraySlice<Single>
The array that holds the first operands.
second  ArraySlice<Single>
The array that holds the second operands.
result  ArraySlice<Single>
The array that holds the results.

Implements

IArrayFunctions<T, TShape, TArray>.Divide(TShape, TArray, TArray, TArray)

Divide(Int32, Single, ArraySlice<Single>, ArraySlice<Single>)

Divides a number by each element of an array.
C#
public override void Divide(
	int length,
	float value,
	ArraySlice<float> operand,
	ArraySlice<float> result
)

Parameters

length  Int32
The number of elements in the array.
value  Single
The number to compare to.
operand  ArraySlice<Single>
The array that holds the operands.
result  ArraySlice<Single>
The array that holds the results.

Implements

IArrayFunctions<T, TShape, TArray>.Divide(TShape, T, TArray, TArray)

See Also