Matlab jacobi 방법 리포트
페이지 정보
작성일 19-10-21 22:36본문
Download : Matlab jacobi 방법 리포트.hwp
[Pro 1] Product of Transpose and Invert of Matrix A MATLAB Program
`` A = [1 2 3; 4 5 6; 7 8 9]; % Creat Matrix
`` A`; % Transpose Matrix
`` inv(A); % Invert Matrix
`` B = inv(A)A` % B = Invert Transpose
B = % Output result
-2 -8 -8
4 16 16
0 -4 -8
[Pro 2-1]
Jacobi`s Method
`` A = [10 1 -1; 1 15 1; -1 1 20];
`` b = [18; -12; 17];
`` Jacobi(A,b)
0 0 0
1.8000 -0.8000 0.8500
1.9650 -0.9767 0.9800
1.9957 -0.9963 0.9971
1.9993 -0.9995 0.9996
1.9999 -0.9999 0.9999
2.0000 -1.0000 1.0000
ans =
2.0000
-1.0000
1.0000
` Jacobi.m `
% Jacobi method (20032178 Park Sang-wook)
% Jacobi (A,b,es,maxit):
% input:
% A = coefficient matrix
% b = right hand side vector
% es= (optional) stop criterion (%) (default = 0.001)
% maxit = (optional) max iterations (default = 50)
% …(drop)



Matlab jacobi 방법 리포트 , Matlab jacobi 방법 리포트기타레포트 , Matlab jacobi 방법 리포트
Matlab,jacobi,방법,리포트,기타,레포트
Matlab jacobi 방법 리포트
Download : Matlab jacobi 방법 리포트.hwp( 87 )
레포트/기타
설명
순서
Matlab jacobi 방법 리포트
다.