Write a NumPy program to insert a new axis within a 2-D array.2-D array of shape (3, 4).New shape will be will be (3, 1, 4).
import numpy as np x = np.zeros((3, 4)) y = np.expand_dims(x, axis=1).shape print(y)
Sample Output:
(3, 1, 4)
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer