Adds a vector broadcast along the specified dimension to this matrix in-place.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<T> AddInPlace(
Vector<T> vector,
Dimension broadcastDimension
)
Public Function AddInPlace (
vector As Vector(Of T),
broadcastDimension As Dimension
) As Matrix(Of T)
public:
Matrix<T>^ AddInPlace(
Vector<T>^ vector,
Dimension broadcastDimension
)
member AddInPlace :
vector : Vector<'T> *
broadcastDimension : Dimension -> Matrix<'T>
Parameters
- vector
- Type: Extreme.MathematicsVectorT
The vector to broadcast and add. - broadcastDimension
- Type: Extreme.MathematicsDimension
A value that specifies whether the elements
in vector should be broadcast across rows or columns.
Return Value
Type:
MatrixTA reference to this instance.
Reference