Click or drag to resize

DoubleMatrixSubtraction(DoubleMatrix, Double) Operator

Subtracts a scalar from a matrix.

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

Parameters

A  DoubleMatrix
A matrix.
s  Double
A scalar.

Return Value

DoubleMatrix
A matrix B where B[i,j] = A[i,j] - s.
See Also