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

ScalarDivide() public static method

Returns the division of a matrix or a vector (i.e dimension [3,1]) by a scalar quantity. In case of an error the error is raised as an exception.
public static ScalarDivide ( double Value, Matrix Mat ) : Matrix
Value double The scalar value to divide the array with
Mat Matrix Matrix which is to be divided by a scalar
return Matrix
        public static Matrix ScalarDivide(double Value, Matrix Mat)
        {
            return new Matrix(ScalarDivide(Value,Mat.in_Mat));
        }

Same methods

Matrix::ScalarDivide ( double Value, double Mat ) : ].double[