ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Standard functions / Numeric values functions / Matrix functions
  • Existence of the transposed matrix
  • Identical matrices
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
MatTranspose (Function)
In french: MatTranspose
Calculates the transposed matrix.
The transposed matrix is obtained by switching the rows into columns. if the source matrix is a matrix containing n rows and m columns, the transposed matrix is a matrix containing m rows and n columns.
// Transposed matrix
ResTranspose = MatTranspose("MyMatrix", "MyTransposedMatrix")
Syntax
<Result> = MatTranspose(<Matrix to transpose> , <Transposed matrix>)
<Result>: Boolean
  • True if the transposed matrix was calculated,
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<Matrix to transpose>: Character string
Name of the matrix to transpose, defined by MatCreate.
<Transposed matrix>: Character string
Name of the transposed matrix, automatically created when calculating the transposed matrix.
Remarks

Existence of the transposed 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 <Matrix to transpose> and <Transposed 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: wd290mat.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help