May 31, 20141 min readPythonLinear Algebra Routine II: Matrix Transpose in PythonNote that, during the operation number of rows and columns are swapped; T(x) – Takes a single argument as a matrix in the form of a list...
May 28, 20148 min readPythonWriting Linear Algebra Routine I: Power of a Python ListAn m×n matrix consists of m rows and n columns. Python lists can behave very much like matrices if one could properly index them. For...