JaggedArrayMathAdd Method |
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(
double[][] a,
int arows,
int acols,
double[][] b,
int brows,
int bcols,
double[][] c,
int crows,
int ccols
)
Parameters
- a Double
- First operand.
- arows Int32
- Number of rows of a.
- acols Int32
- Number of columns of a.
- b Double
- Second operand.
- brows Int32
- Number of rows of b.
- bcols Int32
- Number of columns of b.
- c Double
- The matrix where to store the result. Has to be of same dimensions than a and b.
- crows Int32
- Number of rows of c.
- ccols Int32
- Number of columns of c.
See Also