MatrixMathSubtractColumn Method |
Subtracts the column bcol of matrix b from all columns of matrix a.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static void SubtractColumn(
IROMatrix<double> a,
IROMatrix<double> b,
int bcol,
IMatrix<double> c
)
Parameters
- a IROMatrixDouble
- The source matrix.
- b IROMatrixDouble
- The matrix which contains the row to subtract.
- bcol Int32
- The column number of matrix b.
- c IMatrixDouble
- The destination matrix. Can be equivalent to matrix a (but not to matrix b).
See Also