Question: You are to write a MATLAB function to implement the Hager-Higham method to estimate the condition number of the matrix A in the one-norm. This

 You are to write a MATLAB function to implement the Hager-Higham

You are to write a MATLAB function to implement the Hager-Higham method to estimate the condition number of the matrix A in the one-norm. This is explained in the notes on Canvas and in class. Your function should have the form [kappa,z.jmax]=condi(L.U.P.A). Thus, here L, U, and pare outputs from the command [L, U,p] =lu(A,'vector'). Here kappa is the condition number Ki(A) = ||A||1||A-'||1, z is the vec- tor such that 2 || = 1, || A 2| ||A||1 = ||AT||00, and jmax is a column of the identity matrix such that ||A-lejmar||1 = ||A ||1. Test your routine with the matrices generated by the m-files matrix 1.m, matrix2.m, matrix3.m posted on Canvas in the MATLAB codes folder. Your code should do no more than four iterations and it should be short. You can check your answer with the MATLAB function cond. The MATLAB statement kappal = cond( A, 1) gives you the condition number in the one- norm. If A is well conditioned, your value of kappa should be close to kappal. If A is badly conditioned, they should both be very large. A possible starting vector for z could the one recommended by Higham (in the notes) or it could be the one produced from the MATLAB statements f = z = randn(n,1); form(f, Inf); where n is the dimension of A. You are to write a MATLAB function to implement the Hager-Higham method to estimate the condition number of the matrix A in the one-norm. This is explained in the notes on Canvas and in class. Your function should have the form [kappa,z.jmax]=condi(L.U.P.A). Thus, here L, U, and pare outputs from the command [L, U,p] =lu(A,'vector'). Here kappa is the condition number Ki(A) = ||A||1||A-'||1, z is the vec- tor such that 2 || = 1, || A 2| ||A||1 = ||AT||00, and jmax is a column of the identity matrix such that ||A-lejmar||1 = ||A ||1. Test your routine with the matrices generated by the m-files matrix 1.m, matrix2.m, matrix3.m posted on Canvas in the MATLAB codes folder. Your code should do no more than four iterations and it should be short. You can check your answer with the MATLAB function cond. The MATLAB statement kappal = cond( A, 1) gives you the condition number in the one- norm. If A is well conditioned, your value of kappa should be close to kappal. If A is badly conditioned, they should both be very large. A possible starting vector for z could the one recommended by Higham (in the notes) or it could be the one produced from the MATLAB statements f = z = randn(n,1); form(f, Inf); where n is the dimension of A

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!