best way to add two arrays in python numpy code example
Example: how to append two numpy arrays
#concatenating through column(axis = 1)
numpy.concatenate((N,M),1)
#concatenating through column(axis = 1)
numpy.concatenate((N,M),1)