ISmQPortions.Deciles

Syntax

Deciles: Array;

Description

The Deciles property returns deciles.

Example

Sub Main;

Var

SQ: SmQPortions;

can,y: Array Of Double;

res, i: Integer;

m: Double;

Begin

can := New Double[16];

can[00] := 6209;

can[01] := 6385;

can[02] := 6752;

can[03] := 6837;

can[04] := 6495;

can[05] := 6907;

can[06] := 7349;

can[07] := 7213;

can[08] := 7061;

can[09] := 7180;

can[10] := 7132;

can[11] := 7137;

can[12] := 7473;

can[13] := 7722;

can[14] := 8088;

can[15] := 8516;

SQ := New SmQPortions.Create;

SQ.Samples := can;

res := SQ.Execute;

If res <> 0 Then

Debug.WriteLine(SQ.Errors);

Else

Debug.WriteLine("== Deciles ==");

y := SQ.Deciles;

For i := 0 To y.Length - 1 Do

m := y[i];

Debug.WriteLine(i.ToString + " " + m.ToString);

End For;

End If;

End Sub Main;

Executing this example shows deciles in the console window:

Module execution started

== Deciles ==

0 6209

1 6440

2 6752

3 6872

4 7061

5 7134.5

6 7180

7 7281

8 7473

9 7905

10 8516

Module execution finished

See also:

ISmQPortions