matrixMultiply | ||||||||||
Type | function | |||||||||
Dictionary | LCS | |||||||||
Library | LiveCode Script | |||||||||
Syntax |
| |||||||||
Summary | ||||||||||
Introduced | 1.1 | |||||||||
OS | mac, windows, linux, ios, android | |||||||||
Platforms | desktop, server, mobile | |||||||||
Parameters |
| |||||||||
Example |
| |||||||||
Values |
| |||||||||
Related | Keyword: element Command: multiply Function: extents, transpose Control Structure: function Glossary: array, return | |||||||||
Description | Use the matrixMultiply function to perform matrix multiplication. A two-dimensional array is an array whose elements have a two-part key to describe them. You can visualize such an array as a set of rows and columns:the first part of each element's key is the row number, and the second part is the column number. For example, the expression myArray[3,2] describes the element of myArray which is in the third row, second column. The number of columns in the firstArray must be the same as the number of rows in the secondArray. There are no other constraints in order for the multiplication to succeed. | |||||||||
Tags | math |