public static SquareMatrix operator -(
SquareMatrix A,
SquareMatrix B
)Public Shared Operator - (
A As SquareMatrix,
B As SquareMatrix
) As SquareMatrixpublic:
static SquareMatrix^ operator -(
SquareMatrix^ A,
SquareMatrix^ B
)static let inline (-)
A : SquareMatrix *
B : SquareMatrix : SquareMatrixMatrix subtraction is an O(N2) process.
| ArgumentNullException | A or B is . |
| DimensionMismatchException | The dimension of A is not the same as the dimension of B. |