Tag Archives: Python

Simple Matrix Multiplication in Python

In this tutorial we’ll look at some simple matrix multiplication tools in Python. The arrays are constructed using lists within lists, and the multiplication itself is implemented using for loops. The program works well for small arrays, but really starts bogging down at sizes 500×500 and above. Anyone doing serious work will want to check [...]

Posted in Code | Also tagged , | 3 Comments