Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static DenseVector<T> Multiply(
Matrix<T> matrix,
Vector<T> vector
)
Public Shared Function Multiply (
matrix As Matrix(Of T),
vector As Vector(Of T)
) As DenseVector(Of T)
public:
static DenseVector<T>^ Multiply(
Matrix<T>^ matrix,
Vector<T>^ vector
)
static member Multiply :
matrix : Matrix<'T> *
vector : Vector<'T> -> DenseVector<'T>
Parameters
- matrix
- Type: Extreme.MathematicsMatrixT
A MatrixT. - vector
- Type: Extreme.MathematicsVectorT
A vector.
Return Value
Type:
DenseVectorTA vector that is the product
of
matrix and
vector.
The number of columns of the matrix
matrix must equal the length of the vector vector.
Reference