Matrix multiplication: Difference between revisions

Content added Content deleted
Line 2,084: Line 2,084:
In all cases matrices can be fully symbolic or numeric or mixed symbolic and numeric.
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
Numeric matrices support arbitrary numerical magnitudes, arbitrary precision as well
as complex numbers.
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 }}==
=={{header|MATLAB}} / {{header|Octave }}==