MatrixMathMultiplyScalar 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(
IROMatrix<double> a,
double b,
IMatrix<double> c
)
Parameters
- a IROMatrixDouble
- The first multiplicant.
- b Double
- The second multiplicant.
- c IMatrixDouble
- The resulting matrix.
See Also