Indx Class Function Manual |
Purpose
To report the current column number of the Indx object.
Class
Indx
Usage
{int} ret = object.COL()
Example:
->ind = Indx() ->ind.init(100,200) ->print ind (100 , 200) ->print ind.col() 200 -> |
See also (class function)
row
Purpose
To initialize an Indx object.
Class
Indx
Usage
{void} object.INIT({int} argm1,{int} argm2)
argm1 = row number
argm1 = column number
Example:
->ind = Indx() ->ind.init(100,200) ->print ind (100 , 200) -> |
See also (class function)
row, col
Purpose
To convert to a Matrix object.
Class
Indx
Usage
{Matrix} ret = object.MATRIX()
Example:
->ind = Indx(100,200) ->M = ind.matrix() ->M |
See also (class function)
row, col
Purpose
To report the current row number of the Indx object.
Class
Indx
Usage
{int} ret = object.ROW()
Example:
->ind = Indx() ->ind.init(100,200) ->print ind (100 , 200) ->print ind.row() 100 -> |
See also (class function)
col