Matrix multiplication: Difference between revisions

Content added Content deleted
Line 1,827:
Note also that <code>mp=: +/@:*"1 _</code> functions identically.
 
Perhaps it would have made more sense to define something more like <code>dot=: conjunction def 'u/@:v"1 _'</code> so that matrix multiplication would be <code>+dot*</code> -- this would also correspond to the original [[:Category:APL|APL]] implementation.
 
=={{header|Java}}==