Raises the element of a vector to a constant power.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Vector<T> ElementwisePowCore(
int exponent,
Vector<T> result
)
Protected Overridable Function ElementwisePowCore (
exponent As Integer,
result As Vector(Of T)
) As Vector(Of T)
protected:
virtual Vector<T>^ ElementwisePowCore(
int exponent,
Vector<T>^ result
)
abstract ElementwisePowCore :
exponent : int *
result : Vector<'T> -> Vector<'T>
override ElementwisePowCore :
exponent : int *
result : Vector<'T> -> Vector<'T>
Parameters
- exponent
- Type: SystemInt32
A number. - result
- Type: Extreme.MathematicsVectorT
The vector that is to hold the result. May be .
Return Value
Type:
VectorTA vector whose elements are
the corresponding elements of this vector
raised to the power
exponent.
Reference