Click or drag to resize

MatrixMathAdd Method

Calculates a+b and stores the result in matrix c.

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

Parameters

a  IROMatrixDouble
First matrix to add..
b  IROMatrixDouble
Second operand..
c  IMatrixDouble
The resultant matrix a+b. Has to be of same dimension as a and b.
See Also