ARCHIVED: In Maple, how can I multiply two matrices?

This content has been archived, and is no longer maintained by Indiana University. Information here may no longer be accurate, and links may no longer be available or reliable.

Maple uses the dot product operator . to multiply two matrices. The older operator &*& now stands for a user-defined neutral operator.

  > A:=<1,2|3,4>;
         [1    3]
    A := [      ]
         [2    4]
 > B:=<1,1;2,-1>;
        [1    1]
   B := [      ]
        [2   -1] 
 > A.B;          
        [ 7  -2]
        [      ]
        [10  -2]  
                                     

For more about Maple, see the UITS Research Analytics Maple page.

If you have questions about using statistical and mathematical software at Indiana University, contact the UITS Research Applications and Deep Learning team.

This is document afbm in the Knowledge Base.
Last modified on 2023-05-09 14:44:04.