some numPy and linear algebra
python list L = [1,2,3] numPy array A = np.array([1,2,3]) append to list and append to array L.append(4) A + np.array([4]) python list of lists and select the first element of the list L = [[1,2],[3,4]] L[0] numPy matrix and selecting items from it A = np.array([[1,2],[3,4]]) # show row 1, column 2 print(A[0][1]) # also show row 1, column 2 print(A[0,1]) #selects the entire first column column print(A[:,0]) numPy dot function a = np....