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

Gauss Seidel – MATLAB Program and Algorithm

$
0
0
Gauss Seidel – MATLAB Program and Algorithm : Algorithm :   MATLAB Program : % Gauss Seidal method clc clear all close all A = [10 -2 -1 -1 ; -2 10 -1 -1 ; -1 -1 10 -2 ; -1 -1 -2 10 ];% coefficients matrix C = [3;15;27;-9];% constants vector n = length(C); […]

Viewing all articles
Browse latest Browse all 368

Trending Articles