Click or drag to resize

MatrixMathDivideRow Method

Divides all rows of matrix a by the row rowb of matrix b (element by element).

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

Parameters

a  IROMatrixDouble
The source matrix.
b  IROMatrixDouble
The matrix which contains the denominator row.
brow  Int32
The row number of matrix b which serves as denominator.
resultIfNull  Double
If the denominator is null, the result is set to this number.
c  IMatrixDouble
The destination matrix. Can be equivalent to matrix a (but not to matrix b).
See Also