jpsember / ml_old

Python and machine learning experiments
0 stars 0 forks source link

Working with numpy to perform linear algebra #5

Closed jpsember closed 7 years ago

jpsember commented 7 years ago

Numpy supports both array (e.g., linear algebra vector) and matrix classes:

http://stackoverflow.com/questions/4151128/what-are-the-differences-between-numpy-arrays-and-matrices-which-one-should-i-u

But a matrix is a special subclass of a (numpy) array, so let's stick with arrays.