how to get a rectangular grid out of two given one-dimensional arrays code example
Example: how to get a rectangular grid out of two given one-dimensional arrays
import numpy as np
np.meshgrid(list1, list2)
import numpy as np
np.meshgrid(list1, list2)