Library.StatLib

This property returns the StatLib object, giving access to statistical and probability functions.

This property is read only.

Syntax Parameters Return Value
- - StatLib

SVB Example

Using the statistics library:

Option Base 1
Option Explicit
Sub Main
    Dim StLib As StatLib
    'set the StLib variable to the Statistica library object
    Set StLib = Application.StatLib
    Dim result As Double
    'calculate the Students t distribution and place the result
    'in the result variable
    result = StLib.Student(2,2)
    'display the result
    MsgBox Str(result)
End Sub