Raises the elements of a matrix to a power
from the corresponding elements in another matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<T> ElementwisePowAsLeftCore(
Matrix<T> right,
Matrix<T> result
)
Protected Overridable Function ElementwisePowAsLeftCore (
right As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ ElementwisePowAsLeftCore(
Matrix<T>^ right,
Matrix<T>^ result
)
abstract ElementwisePowAsLeftCore :
right : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
override ElementwisePowAsLeftCore :
right : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- right
- Type: Extreme.MathematicsMatrixT
The matrix that contains the exponents. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
Return Value
Type:
MatrixTA matrix whose elements are
the quotient of the corresponding elements of
this matrix and
right.
Reference