CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 01:08:49 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=b701ef9204249672d56d3385c011bf4109b64a75d247851d4ce373835741a1bea%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22D4t5jE44suK5TULOapJ1K5tYeoPQOs46%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d2b54d3997a9c3-BLR
gauss elimination - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function x = gauss_elimination(A, B)
- [n, m] = size(A);
- if n ~= m
- error('Not a square matrix');
- end
- for i = 1 : n - 1
- for j = i + 1 : n
- for k = i + 1 : n
- A(j, k) = A(j, k) - (A(j, i) / A(i, i)) * A(i, k);
- end
- B(j, 1) = B(j, 1) - (A(j, i) / A(i, i)) * B(i, 1);
- end
- end
- x = zeros(1, n);
- x(1, n) = B(n) / A(n, n);
- for i = n - 1 : -1 : 1
- x(1, i) = B(i, 1);
- for j = i + 1 : n
- x(1, i) = x(1, i) - A(i, j) * x(1, j);
- end
- x(1, i) = x(1, i) / A(i, i);
- end
Advertisement
Add Comment
Please, Sign In to add comment
-
📝 Exchange profit method
JavaScript | 9 sec ago | 0.24 KB
-
⭐ Free Crypto Method ⭐
JavaScript | 18 sec ago | 0.24 KB
-
📌 Swapzone +37% glitch ⭐ W
JavaScript | 24 sec ago | 0.25 KB
-
📝 Crypto Swap Glitch ✅ Working
JavaScript | 27 sec ago | 0.24 KB
-
✅⭐ Make huge profits on trading ⭐⭐ P
JavaScript | 33 sec ago | 0.25 KB
-
📝 EASY MONEY GUIDE ✅ Working
JavaScript | 36 sec ago | 0.24 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 42 sec ago | 0.25 KB
-
📌 ChangeNOW Exploit
JavaScript | 45 sec ago | 0.24 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