You are on page 1of 1

20/10/19 12:40 PM C:\Users\Prince\Desktop\me682...\A2a.

m 1 of 1

%Assignment 2
%Question 1
%Gauss Elimination
clear all
clc
A = [3 -0.1 -0.2;0.1 7 -0.3;0.3 -0.2 10];
b = [7.85;-19.3;71.4];
x = Gauss(A,b)

You might also like