Indx Class Function Manual

COL

| HOME | BACK |

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

| HOME | BACK |


INIT

| HOME | BACK |

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

| HOME | BACK |


MATRIX

| HOME | BACK |

Purpose

To convert to a Matrix object.

Class

Indx

Usage

{Matrix} ret = object.MATRIX()

Example:

->ind = Indx(100,200)

->M = ind.matrix()

->M

ans =

no of row : 2
no of column : 1

0: 100.00000
1: 200.00000

->

See also (class function)

row, col

| HOME | BACK |


ROW

| HOME | BACK |

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

| HOME | BACK |