Click or drag to resize

JaggedArrayMathSubtractProductFromSelf(Double, Int32, Int32, Double, Double, Int32, Int32) Method

Calculates c = c - ab

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void SubtractProductFromSelf(
	double[][] a,
	int arows,
	int acols,
	double b,
	double[][] c,
	int crows,
	int ccols
)

Parameters

a  Double
First operand of multiplication.
arows  Int32
Number of rows of a.
acols  Int32
Number of columns of a.
b  Double
Second multiplicant.
c  Double
The third operand and matrix where to store the result c = c - a*b. Has to be of same dimensions than a.
crows  Int32
Number of rows of c.
ccols  Int32
Number of columns of c.
See Also