Python numpy
By terje
Check what is installed
pip list
Downloading and installing numpy:
pip install numpy
Downloading and installing matplotlib
pip install matplotlib
Initializing numpy arrays for vectors
Array of 2D vectors, of length 'n'vectorArray = np.zeros((n,2))Array of 3D vectors, of length 'n'
vectorArray = np.zeros((n,3))