Click or drag to resize

JaggedArrayMathDivideRow 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(
	double[][] a,
	int arows,
	int acols,
	double[][] b,
	int brows,
	int bcols,
	int browForDivision,
	double resultIfNull,
	double[][] c,
	int crows,
	int ccols
)

Parameters

a  Double
First operand (minuend).
arows  Int32
Number of rows of a.
acols  Int32
Number of columns of a.
b  Double
Second operand (subtrahend).
brows  Int32
Number of rows of b.
bcols  Int32
Number of columns of b.
browForDivision  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  Double
The matrix where to store the result. Has to be of same dimensions than a. Must not be identical to b.
crows  Int32
Number of rows of c.
ccols  Int32
Number of columns of c.
See Also