Divides the elements of a matrix by the elements of a vector broadcast
along the specified dimension.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Matrix<T> ElementwiseDivideInto<T>(
Matrix<T> left,
Vector<T> right,
Dimension broadcastDimension,
Matrix<T> result
)
Public Shared Function ElementwiseDivideInto(Of T) (
left As Matrix(Of T),
right As Vector(Of T),
broadcastDimension As Dimension,
result As Matrix(Of T)
) As Matrix(Of T)
public:
generic<typename T>
static Matrix<T>^ ElementwiseDivideInto(
Matrix<T>^ left,
Vector<T>^ right,
Dimension broadcastDimension,
Matrix<T>^ result
)
static member ElementwiseDivideInto :
left : Matrix<'T> *
right : Vector<'T> *
broadcastDimension : Dimension *
result : Matrix<'T> -> Matrix<'T>
Parameters
- left
- Type: Extreme.MathematicsMatrixT
A matrix. - right
- Type: Extreme.MathematicsVectorT
A vector. - 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 .
Type Parameters
- T
Return Value
Type:
MatrixTA matrix whose elements are
the quotient of the corresponding elements of
left and
right.
Reference