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