MatrixMathMultiply(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble) Method |
Multiplies matrix a with vector b and stores the result in vector c.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void Multiply(
IROMatrix<double> a,
IReadOnlyList<double> b,
IVector<double> c
)
Parameters
- a IROMatrixDouble
- First multiplicant.
- b IReadOnlyListDouble
- Second multiplicant. The vector must have the length of a.Columns.
- c IVectorDouble
- The vector where to store the result. Has to be of dimension (a.Rows).
See Also