Previous Up Next

14.3.3  Multiplication of two matrices

The infixed operator * and &* are used for the multiplication of two matrices.

Example

[[1,2],[3,4]]*[[5,6],[7,8]]

or:

[[1,2],[3,4]]&*[[5,6],[7,8]]
     


1922
4350


          

Previous Up Next