Write a NumPy program to calculate the Frobenius norm and the condition number of a given array.
import numpy as np a = np.arange(1, 10).reshape((3, 3)) print("Original array:") print(a) print("Frobenius norm and the condition number:") print(np.linalg.norm(a, 'fro')) print(np.linalg.cond(a, 'fro'))
Sample Output:
Original array: [[1 2 3] [4 5 6] [7 8 9]] Frobenius norm and the condition number: 16.8819430161 4.56177073661e+17
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