ManagedArrayFunctions<T>.Pow Method

Definition

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

Overload List

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

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

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

Parameters

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

Implements

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

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

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

Parameters

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

Implements

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

See Also