JaggedArrayMathMultiplyScalar Method |
Multiplies the matrix a with a scalar value b and stores the result in c. Matrix a and c are allowed to be the same matrix.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void MultiplyScalar(
double[][] a,
int arows,
int acols,
double b,
double[][] c,
int crows,
int ccols
)
Parameters
- a Double
- The first multiplicant.
- arows Int32
- Number of rows of a.
- acols Int32
- Number of columns of a.
- b Double
- The second multiplicant.
- c Double
- The resulting matrix. Has to be of same dimensions than a.
- crows Int32
- Number of rows of c.
- ccols Int32
- Number of columns of c.
See Also