Click or drag to resize

DoubleMatrixSubtract(Double, DoubleMatrix, DoubleMatrix) Method

Subtracts a matrix from a scalar.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public static void Subtract(
	double s,
	DoubleMatrix A,
	DoubleMatrix B
)

Parameters

s  Double
A scalar.
A  DoubleMatrix
A Matrix.
B  DoubleMatrix
A matrix whose contents are overwritten with the difference B[i,j] = s - A[i,j]
See Also