Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Create a function gaussian_elimination that performs the gaussian elimination of linear system of the form Ax - b. The function should return the associated

image text in transcribed

1. Create a function gaussian_elimination that performs the gaussian elimination of linear system of the form Ax - b. The function should return the associated upper triangular matrix Uand the modified right-hand side f. The function header should look something like function [U, f gaussian_elimination (A, b) Create a function backward_substitution that solve the system Ux -f when U is an upper triangular matrix. The function header should look something like function x - backward_substitution (U,f) Let us recall that the output has to be a vector. Apply the two functions to solve the 7 x 7 linear system 6 1 7 761 8 7 5 5 278 7 9 5 3 444 3 9 81 6-1 8 2 1 4 5 3337 1 3274 79 6 6 -2 3233 4 ? T3 Call, U, f, x the results. compare your solution to x0 obtained with the Matlab command A\b. Call Err the absolute error. Comment using %

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

OpenStack Trove

Authors: Amrith Kumar, Douglas Shelley

1st Edition

1484212215, 9781484212219

Students also viewed these Databases questions