Note: This API is now obsolete.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[ObsoleteAttribute]
public static DenseVector<T> Multiply(
Vector<T> vector,
Matrix<T> matrix
)
<ObsoleteAttribute>
Public Shared Function Multiply (
vector As Vector(Of T),
matrix As Matrix(Of T)
) As DenseVector(Of T)
public:
[ObsoleteAttribute]
static DenseVector<T>^ Multiply(
Vector<T>^ vector,
Matrix<T>^ matrix
)
[<ObsoleteAttribute>]
static member Multiply :
vector : Vector<'T> *
matrix : Matrix<'T> -> DenseVector<'T>
Parameters
- vector
- Type: Extreme.MathematicsVectorT
A vector. - matrix
- Type: Extreme.MathematicsMatrixT
A MatrixT.
Return Value
Type:
DenseVectorTA vector that is the product
of
matrix and
vector.
This method multiplies the matrix on the right of the vector,
effectively multiplying the vector by the transpose of the matrix.
The number of rows of the matrix matrix must equal
the length of the vector vector.
Reference