Write a NumPy program to get the magnitude of a vector in NumPy.
import numpy as np x = np.array([1,2,3,4,5]) print("Original array:") print(x) print("Magnitude of the vector:") print(np.linalg.norm(x))
Sample Output:
Original array: [1 2 3 4 5] Magnitude of the vector: 7.4161984871
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