Hi all,is there a function to delete slices from a 3D array given a list of slice indexes?I'm looking for the equivalent of numpy.delete, for example, given the following matrixx = np.zeros((4,4,4))delte the second and fourth slice on the third axis:y = np.delete(x, [1,3], axis=2)Sam