Q:

Write a NumPy program to compute the condition number of a given matrix

0

Write a NumPy program to compute the condition number of a given matrix.

From Wikipedia: In the field of numerical analysis, the condition number of a function with respect to an argument measures how much the output value of the function can change for a small change in the input argument. This is used to measure how sensitive a function is to changes or errors in the input, and how much error in the output results from an error in the input.

All Answers

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

import numpy as np
m = np.array([[1,2],[3,4]])
print("Original matrix:")
print(m)
result =  np.linalg.cond(m)
print("Condition number of the said matrix:")
print(result)

Sample Output:

Original matrix:
[[1 2]
 [3 4]]
Condition number of the said matrix:
14.9330343737

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