Write a NumPy program to create a 3x3 matrix with values ranging from 2 to 10
import numpy as np x = np.arange(2, 11).reshape(3,3) print(x)
Sample Output:
[[ 2 3 4] [ 5 6 7] [ 8 9 10]]
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