public static SquareMatrix operator -(
SquareMatrix A,
SquareMatrix B
)
Public Shared Operator - (
A As SquareMatrix,
B As SquareMatrix
) As SquareMatrix
public:
static SquareMatrix^ operator -(
SquareMatrix^ A,
SquareMatrix^ B
)
static let inline (-)
A : SquareMatrix *
B : SquareMatrix : SquareMatrix
Matrix 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. |