AnimatGuiCtrls.MatrixLibrary.Matrix.Subtract C# (CSharp) Method

Subtract() public static method

Returns the difference of two matrices with compatible dimensions. In case of an error the error is raised as an exception.
public static Subtract ( Matrix Mat1, Matrix Mat2 ) : Matrix
Mat1 Matrix First matrix in the subtraction
Mat2 Matrix Second matrix in the subtraction
return Matrix
        public static Matrix Subtract(Matrix Mat1, Matrix Mat2)
        {
            return new Matrix(Subtract(Mat1.in_Mat,Mat2.in_Mat));
        }

Same methods

Matrix::Subtract ( double Mat1, double Mat2 ) : ].double[