Vectors and matrices in Python 3.x

Is there a good Python 3 library for vectors and matrices?

Here are some of the features that I expect to find in such a library:

  • matrix multiplication
  • matrix determinant
  • Euclidean distance between two vectors
  • Cosine similarity between two vectors
  • convolution
+4
source share
2 answers

Version 1.5 numpy is compatible with Python 3.

+9
source

U can download numpy for python 3: http://sourceforge.net/projects/numpy/files/NumPy/1.5.1/numpy-1.5.1-win32-superpack-python3.1.exe/download

Its the best tool in python for the world for what you need

+1
source

Source: https://habr.com/ru/post/1335156/


All Articles