Question: Question II You are tasked with designing a computer program for obtaining polynomial models using least squares approximation. This would typically require the solution of
Question II
You are tasked with designing a computer program for obtaining polynomial models using least squares approximation. This would typically require the solution of an overdetermined system where the matrix is a Vandermonde Matrix known for being illconditioned. You have access to a standard numerical library such as Matlab for example with the following methods available to you that you can use without
a Fundamental matrix and vector operations multiplication addition etc
b Norm Returns the Ln norm of A
cPLU Returns and such that Partial pivoting
d Returns and such that No pivoting
etransp Returns the transpose of
fChol Returns such that Uses Cholesky decomposition A must be symmetric positive definite
g Returns and such that uses the modified GramSchmidt algorithm
h Householder Returns and such that uses the Householder reflections
i Givens Returns and such that uses Givens Rotations
jFwdSub Returns y such that L must be lower triangular
kBwdSub Returns such that U must be upper triangular
You are tasked with solving this problem using Tikhonov Regularization. Write a Matlab program that computes given A and You can use any of the functions outlined above if needed. Do not worry about minor syntax errors as long as the program is clear as a pseudocode.
There are number of possible implementations or answers to this problem. Explain the rationale behind the approach you have used.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
