return a two dimensional matrix of integers obtained from 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)