|
|
|
|
|
- Matrix existence
- Managing errors
MatNbColumn (Function) In french: MatNbColonne Returns the number of columns found in a matrix. The number of matrix columns changes dynamically. It corresponds to the number of initialized columns. The number of columns can be modified by:
// Number of columns? ResNbColumns = MatNbColumn("MyMatrix")
Syntax
<Result> = MatNbColumn(<Matrix>)
<Result>: Integer Number of columns found in the specified matrix. <Matrix>: Character string Name of the matrix to be used, defined with MatCreate. Remarks The matrix existence is not checked. To check the matrix existence, use MatExist. Caution: MatNbColumn returns no error code. To find out whether errors have been generated when returning the number of columns, use MatError. To get more details on the error, use ErrorInfo with the errMessage constant. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|