Matrix multiplication: Difference between revisions

Line 2,084:
In all cases matrices can be fully symbolic or numeric or mixed symbolic and numeric.
Numeric matrices support arbitrary numerical magnitudes, arbitrary precision as well
as complex numbers.:
 
<lang mathematica>Dot[{{85, 60, 65}, {54, 99, 33}, {46, 52, 87}}, {{89, 77, 98}, {55, 27, 25}, {80, 68, 85}}]</lang>
 
With the following output:
 
<lang mathematica>{{16065, 12585, 15355}, {12891, 9075, 10572}, {13914, 10862, 13203}}</lang>
 
=={{header|MATLAB}} / {{header|Octave }}==