Matrix multiplication: Difference between revisions

Content added Content deleted
(→‎{{header|Go}}: added library based solution)
m (explanatory note added)
Line 343: Line 343:


=={{header|BBC BASIC}}==
=={{header|BBC BASIC}}==
BBC BASIC has built-in matrix multiplication:
BBC BASIC has built-in matrix multiplication
(assumes default lower bound of 0):

<lang bbcbasic> DIM matrix1(3,1), matrix2(1,2), product(3,2)
<lang bbcbasic> DIM matrix1(3,1), matrix2(1,2), product(3,2)