ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Numeric values functions / Matrix functions
  • Matrix existence
  • Error management
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Reads the value of a matrix element.
Reminder An element of a matrix is identified by its row and column.
// Lecture de l'élément (ligne 3, colonne 5)
ResLecture = MatRead("MaMatrice", 3, 5)
Syntax
<Result> = MatRead(<Matrix> , <Element row> , <Element column>)
<Result>: Real
Value of element read.
<Matrix>: Character string
Name of the matrix to be read, defined with MatCreate.
<Element row>: Integer
Number of the row for the element to read.
<Element column>: Integer
Number of the column for the element to read.
Remarks

Matrix existence

The matrix existence is not checked. To check the matrix existence, use MatExist.

Error management

Caution: MatRead returns no error code.
To find out whether errors have been generated when reading an element, use MatError. To get more details on the error, use ErrorInfo with the errMessage constant.
Business / UI classification: Neutral code
Component: wd300mat.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help