Raises the elements of a vector broadcast along the specified dimension
to a power from the corresponding elements in a matrix
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> ElementwisePowInto<T>(
Vector<T> left,
Dimension broadcastDimension,
Matrix<T> right,
Matrix<T> result
)
Public Shared Function ElementwisePowInto(Of T) (
left As Vector(Of T),
broadcastDimension As Dimension,
right As Matrix(Of T),
result As Matrix(Of T)
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ ElementwisePowInto(
Vector<T>^ left,
Dimension broadcastDimension,
Matrix<T>^ right,
Matrix<T>^ result
)
static member ElementwisePowInto :
left : Vector<'T> *
broadcastDimension : Dimension *
right : Matrix<'T> *
result : Matrix<'T> -> Matrix<'T>
Parameters
- left
- Type: Extreme.MathematicsVectorT
A vector. - broadcastDimension
- Type: Extreme.MathematicsDimension
A value that specifies whether the elements
in left should be broadcast across rows or columns. - right
- Type: Extreme.MathematicsMatrixT
A matrox. - result
- Type: Extreme.MathematicsMatrixT
The matrix that is to hold the result. May be .
Type Parameters
- T
Return Value
Type:
MatrixTA matrix whose elements are
the product of the corresponding elements of
left and
right.
Reference