Calculates a+b and stores the result in matrix c.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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