Click or drag to resize

MatrixMathMultiplyRow(IROMatrixDouble, IReadOnlyListDouble, IMatrixDouble) Method

Multiplies the row rowb of matrix b element by element to all rows of matrix a.

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

Parameters

a  IROMatrixDouble
The source matrix.
b  IReadOnlyListDouble
The vector which contains the row to multiply.
c  IMatrixDouble
The destination matrix. Can be equivalent to matrix a (but not to matrix b).
See Also