Matrix Multiplication

Returns the product of A and B. This function is only defined if both inputs are matrices or one is a matrix and the other one a vector. The number of columns/components in the first matrix/vector must have the same number of rows/components in the second matrix/vector.

This function returns the same object as is returned by the operation A * B.

Syntax

matrixmult(A, B)

Types
 Variable NameValue TypeVariable Type
Arguments:Areal, complexvector, matrix
Breal, complexvector, matrix
Result: zreal, complex vector, matrix
Calculator Input

Use the matrixmult button to complete the operation.

Example
IDDescriptionTypeValueExpression
AArgumentREAL MATRIX

[[1,2],[3,4],[5,6]]
BArgumentREAL MATRIX

[[1,2,3],[4,5,6]]
z Result REAL MATRIX

matrixmult(A,B)