CMatrix:Get
The Get method returns the value of the CMatrix member at a specified index.
value = CMatrix:Get( n, m ) |
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.
Assume that a CMatrix named M exists and contains a value "abc" at index [10][5]. This script fragment returns the string:
|
-- get the value of M[10][5] |
|
-- v = 'abc' |