CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 00:28:20 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=d667f37757cc92ab30f3e928b64427056ea6436f73cd5b7184e4073982efee52a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22YbGEvTnszt0fddvibQhmSwGDdr-KPCWN%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d27a02c92cb155-BLR
Runge Kutta - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function rk = RK_method(x0, y0, h, x)
- f = @(x, y) (-2 * x ^ 3) + (12 * x ^ 2) - (20 * x) + 8.5;
- n = (x - x0) / h;
- for i = 1 : n
- k1 = h * f(x0, y0);
- k2 = h * f(x0 + h / 2, y0 + k1 / 2);
- k3 = h * f(x0 + h / 2, y0 + k2 / 2);
- k4 = h * f(x0 + h, y0 + k3);
- y0 = y0 + (k1 + 2 * k2 + 2 * k3 + k4) / 6;
- x0 = x0 + h;
- end
- rk = y0;
- end
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐⭐⭐Exchange Exploit T 3⭐⭐
Java | 2 sec ago | 0.10 KB
-
⭐ Free Crypto Method ⭐
JavaScript | 7 sec ago | 0.24 KB
-
⭐⭐⭐Swapzone.io Glitch (Working)⭐⭐
Java | 12 sec ago | 0.10 KB
-
⭐⭐⭐ChangeNOW Exploit⭐⭐
Java | 13 sec ago | 0.10 KB
-
📝 Crypto Swap Glitch ✅ Working
JavaScript | 16 sec ago | 0.24 KB
-
⭐⭐⭐Profit Method⭐⭐
Java | 23 sec ago | 0.10 KB
-
⭐⭐⭐Exchange Exploit⭐⭐
Java | 25 sec ago | 0.10 KB
-
📝 EASY MONEY GUIDE ✅ Working
JavaScript | 25 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