suivant: Addition of elements of
monter: Arithmetic and matrix
précédent: Addition and substraction of
Table des matières
Index
Multiplication of two matrices : * &*
The infixed operator * (or &*) is used for the
multiplication of two matrices.
Input :
[[1,2],[3,4]] * [[5,6],[7,8]]
Or :
[[1,2],[3,4]] &* [[5,6],[7,8]]
Output :
[[19,22],[43,50]]
giac documentation written by Renée De Graeve and Bernard Parisse