Application.MatrixObject

This property returns the MatrixObject, giving access to matrix library routines.

This property is read only.

Syntax Parameters Return Value
MatrixObject

SVB Example

Using matrix functions:

Option Base 1
Option Explicit
Sub main
    Dim MatrixObj As MatrixObject
    'create a new matrix management object
    Set MatrixObj = Application.MatrixObject
    Dim Mtrx(1 To 10) As Double
    'fill the array with values
    Dim i As Integer
    For i = 1 To UBound(Mtrx())
        Mtrx(i) = Rnd()
    Next i
    'display the matrix in a Statistica spreadsheet 
    MatrixObj.MatrixDisplay(Mtrx(),"Matrix")
End Sub