Q:

Write a NumPy program to calculate the Frobenius norm and the condition number of a given array

0

Write a NumPy program to calculate the Frobenius norm and the condition number of a given array.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

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

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now