CMatrix:Exists CMatrix:GetRow

CMatrix:Get


The Get method returns the value of the CMatrix member at a specified index.

Syntax

value = CMatrix:Get( n, m )

Remarks

The returned value is whatever type was stored in the matrix at the specified index. If the index is not a valid row and column, this method returns nil.

Example

Assume that a CMatrix named M exists and contains a value "abc" at index [10][5]. This script fragment returns the string:

 

v = M:Get( 10, 5 )

-- get the value of M[10][5]

Printf("v = '%s'", v )

-- v = 'abc'

Related Topics

CMatrix, Set