CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 00:37:06 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=73d520883d77222f74833657dd17d4424ef80559d0d849202745c17530d79889a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22wcn9kFnGI_mGhhDcSyQ6oCF1O96U7lzY%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d286d77c8da9b7-BLR
gauss jacobi - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function x = gaussJacobi(A, B)
- [n, m] = size(A);
- if n ~= m
- error('Not a square matrix');
- end
- for i = 1 : n
- sum = 0;
- for j = 1 : n
- if i == j
- continue;
- end
- sum = sum + abs(A(i, j));
- end
- if abs(A(i, i)) <= sum
- error('Not diagonally dominant');
- end
- end
- for i = 1 : n
- val = A(i, i);
- for j = 1 : n
- A(i, j) = A(i, j) / val;
- end
- B(i, 1) = B(i, 1) / val;
- end
- x = zeros(1, n);
- while(1)
- y = zeros(1, n);
- for i = 1 : n
- y(1, i) = B(i, 1);
- for j = 1 : n
- if i == j
- continue;
- end
- y(1, i) = y(1, i) - A(i, j) * x(1, j);
- end
- end
- if x == y
- break;
- end
- x = y;
- end
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐⭐⭐Profit Method⭐⭐
Java | 6 sec ago | 0.10 KB
-
📌 Swapzone +37% glitch ⭐ 6
JavaScript | 8 sec ago | 0.25 KB
-
📌 ChangeNOW Exploit
JavaScript | 11 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ⭐⭐ C
JavaScript | 17 sec ago | 0.25 KB
-
📌 Instant BTC Profit Method ✅ Working
JavaScript | 21 sec ago | 0.24 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 26 sec ago | 0.25 KB
-
📝 MAKE $2500 IN 15 MIN ✅ Working
JavaScript | 31 sec ago | 0.24 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ S
JavaScript | 36 sec ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand