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
  • Existence of inverse matrix
  • Identical matrices
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Calculates the inverse of a square matrix.
Remark: The inverse matrix can only be calculated:
  • from a square matrix (the number of rows is equal to the number of columns)
  • if the determinant (returned by MatDeterminant) is not null.
// Inversion d'une matrice carrée
ResInversion = MatInvert("MaMatrice", "MaMatriceInversée")
Syntax
<Result> = MatInvert(<Inverse matrix to calculate> , <Calculated inverse matrix>)
<Result>: Boolean
  • True if the inversion was performed,
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Inverse matrix to calculate>: Character string
Name of the inverse matrix to be calculated, defined with MatCreate.
<Calculated inverse matrix>: Character string
Name of the inverse matrix, automatically created during the inversion.
Remarks

Existence of inverse matrix

The matrix existence is not checked. This matrix is overwritten if it existed beforehand. To check the matrix existence, use MatExist.

Identical matrices

A WLanguage error occurs if <Inverse matrix to calculate> and <Calculated inverse matrix> are identical.
Related Examples:
The Matrix functions Unit examples (WINDEV): The Matrix functions
[ + ] Using matrices with the WLanguage functions.
This example, powered by WINDEV, is used to perform calculations on matrices: addition, multiplication, transposition, inversion...
The Matrix functions Unit examples (WINDEV Mobile): The Matrix functions
[ + ] Using matrices with the WLanguage functions: addition, multiplication, transposition, inversion...
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: 09/20/2024

Send a report | Local help