ManagedArrayFunctionsOfSingle.Pow Method

Definition

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

Overload List

Pow(Int32, ArraySlice<Single>, Int32, ArraySlice<Single>) Raises each element in an array to the specified power.
Pow(Int32, ArraySlice<Single>, Single, ArraySlice<Single>) Raises each element in an array to the specified power.

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

Raises each element in an array to the specified power.
C#
public override void Pow(
	int length,
	ArraySlice<float> operand,
	int exponent,
	ArraySlice<float> result
)

Parameters

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

Implements

IArrayFunctions<T, TShape, TArray>.Pow(TShape, TArray, Int32, TArray)

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

Raises each element in an array to the specified power.
C#
public override void Pow(
	int length,
	ArraySlice<float> operand,
	float exponent,
	ArraySlice<float> result
)

Parameters

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

Implements

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

See Also