Multiplies a vector by a matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Vector<T> Multiply<T>(
Matrix<T> matrix,
TransposeOperation operation,
Vector<T> vector
)
Public Shared Function Multiply(Of T) (
matrix As Matrix(Of T),
operation As TransposeOperation,
vector As Vector(Of T)
) As Vector(Of T)
public:
generic<typename T>
static Vector<T>^ Multiply(
Matrix<T>^ matrix,
TransposeOperation operation,
Vector<T>^ vector
)
static member Multiply :
matrix : Matrix<'T> *
operation : TransposeOperation *
vector : Vector<'T> -> Vector<'T>
Parameters
- matrix
- Type: Extreme.MathematicsMatrixT
A matrix. - operation
- Type: Extreme.MathematicsTransposeOperation
The operation to apply to matrix
before multiplying. - vector
- Type: Extreme.MathematicsVectorT
A vector.
Type Parameters
- T
Return Value
Type:
VectorT
Reference