IMath.MDeterm

Fore Syntax

MDeterm(Data: Array): Double;

Fore.NET Syntax

MDeterm(Data: System.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.

Fore 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.

Fore.NET Example

The requirements and result of the Fore.NET example execution match with those in the Fore example.

Imports Prognoz.Platform.Interop.MathFin;

Public Shared Sub Main(Params: StartParams);
Var
    r: double;
    Math: MathClass = New MathClass();
    matr: System.Array;
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);
    System.Diagnostics.Debug.WriteLine(r);
End Sub;

See also:

IMath