Raises the elements of a vector, broadcast along the specified dimension
to the power from the corresponding element in a matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
protected virtual Matrix<T> ElementwisePowAsRightCore(
Vector<T> left,
Dimension broadcastDimension,
Matrix<T> result
)
Protected Overridable Function ElementwisePowAsRightCore (
left As Vector(Of T),
broadcastDimension As Dimension,
result As Matrix(Of T)
) As Matrix(Of T)
protected:
virtual Matrix<T>^ ElementwisePowAsRightCore(
Vector<T>^ left,
Dimension broadcastDimension,
Matrix<T>^ result
)
abstract ElementwisePowAsRightCore :
left : Vector<'T> *
broadcastDimension : Dimension *
result : Matrix<'T> -> Matrix<'T>
override ElementwisePowAsRightCore :
left : Vector<'T> *
broadcastDimension : Dimension *
result : Matrix<'T> -> Matrix<'T>
Parameters
- left
- Type: Extreme.MathematicsVectorT
The left operand. - broadcastDimension
- Type: Extreme.MathematicsDimension
A value that specifies whether the elements
in left 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
left.
Reference