IMath.MDeterm

Syntax

MDeterm(Data: Array): Double;

Parameters

Values. Array of real numbers.

Description

The MDeterm method returns the determinant of the specified matrix.

Comments

The matrix must be square.

If an input array contains gaps, the function returns error.

Example

To execute the example, add a link to the MathFin system assembly.

Sub UserProc;
Var
    matr: Array Of Double;
    r: Double;
Begin
    matr := New Double[44];
    matr[00] := 1; matr[01] := 3; matr[02] := 8; matr[03] := 5;
    matr[10] := 1; matr[11] := 3; matr[12] := 6; matr[13] := 1;
    matr[20] := 1; matr[21] := 1; matr[22] := 1; matr[22] := 0;
    matr[30] := 7; matr[31] := 3; matr[32] := 10; matr[33] := 2;
    r := Math.MDeterm(matr);
    Debug.WriteLine(r);
End Sub UserProc;

After executing the example the console window displays the result of the product equal to 2250.

See also:

IMath