Quantcast
Channel: MyClassBook
Viewing all articles
Browse latest Browse all 368

Gaussian Elimination Method MATLAB Program and Algorithm

$
0
0
Gaussian Elimination Method MATLAB Program and Algorithm : Algorithm : MATLAB PROGRAM :   %Aim:- To find the solution of given linear equations %using Gauss Elimination method.   function [x] = GaussianEliminate(A, b) A=[1 4 -1;1 1 -6;3 -1 -1]; % matrix of coeff. of x,y,z b=[-5 -12 4]; %matrix of constants on R.H.S N […]

Viewing all articles
Browse latest Browse all 368

Trending Articles