Click or drag to resize

MatrixMathMultiplyFirstTransposed(IROMatrixDouble, IReadOnlyListDouble, IVectorDouble) Method

Multiplies matrix a_transposed with vector b and stores the result in vector c.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void MultiplyFirstTransposed(
	IROMatrix<double> a,
	IReadOnlyList<double> b,
	IVector<double> c
)

Parameters

a  IROMatrixDouble
First multiplicant.
b  IReadOnlyListDouble
Second multiplicant.
c  IVectorDouble
The matrix where to store the result. Has to be of dimension (a.Rows, b.Columns).
See Also