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(
Vector<T> right,
Dimension broadcastDimension,
Matrix<T> result
)
Protected Overridable Function ElementwisePowAsLeftCore (
right As Vector(Of T),
broadcastDimension As Dimension,
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ ElementwisePowAsLeftCore(
Vector<T>^ right,
Dimension broadcastDimension,
Matrix<T>^ result
)
abstract ElementwisePowAsLeftCore :
right : Vector<'T> *
broadcastDimension : Dimension *
result : Matrix<'T> -> Matrix<'T>
override ElementwisePowAsLeftCore :
right : Vector<'T> *
broadcastDimension : Dimension *
result : Matrix<'T> -> Matrix<'T>
Parameters
- right
- Type: Extreme.MathematicsVectorT
The matrix that contains the exponents. - broadcastDimension
- Type: Extreme.MathematicsDimension
A value that specifies whether the elements
in right should be broadcast across rows or columns. - 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