AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Funciones estándar / Funciones de valores numéricos / Funciones de matrices
  • Multiplying matrices
  • Existence of the result matrix
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
MatMultiply (Function)
In french: MatMultiplie
Multiplies two matrices.
// Multiply two matrices
ResMultiply = MatMultiply("Matrix1", "Matrix2", "MyResultMatrix")
Syntax
<Result> = MatMultiply(<1st matrix> , <2nd matrix> , <Result matrix>)
<Result>: Boolean
  • True if the multiplication was performed,
  • False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<1st matrix>: Character string
Name of first matrix to multiply, defined by MatCreate.
<2nd matrix>: Character string
Name of second matrix to multiply, defined by MatCreate.
<Result matrix>: Character string
Name of the matrix that contains the result of the multiplication. This matrix is automatically created when the two matrices are multiplied.
Remarks

Multiplying matrices

To multiply two matrices, the number of columns in the first matrix must be equal to the number of rows in the second matrix.
The element (row I, column j) of the result matrix is obtained by multiplying the row I of the first matrix by the column j of the second matrix.
A matrix can be multiplied by itself. To do so, use the same matrix name for <1st matrix> and <2nd matrix>.

Existence of the result matrix

The matrix existence is not checked. This matrix is overwritten if it existed beforehand. To check the matrix existence, use MatExist.
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
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 22/06/2023

Señalar un error o enviar una sugerencia | Ayuda local