RosettaCodeData/Task/Matrix-multiplication/00-TASK.txt

7 lines
188 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
;Task:
Multiply two matrices together.
They can be of any dimensions, so long as the number of columns of the first matrix is equal to the number of rows of the second matrix.
<br><br>