CARVIEW |
Select Language
HTTP/2 200
date: Sat, 11 Oct 2025 03:34:58 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=64b8b3df947686be09de5e067c151279bdd66f595c2ea9d51cbdc2e8fc82e685a%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22vQHNpeIjcJmUNrK_7YNiGEkx1mhFtaaV%22%3B%7D; HttpOnly; Path=/
cf-ray: 98cb4e03a86ccf00-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
-
⭐⭐⭐Free Giftcards Method⭐⭐
Java | 4 sec ago | 0.10 KB
-
⭐⭐Exchange Exploit⭐⭐ 3
JavaScript | 5 sec ago | 0.24 KB
-
⭐⭐⭐Swapzone.io Glitch (Working)⭐⭐
Java | 15 sec ago | 0.10 KB
-
✅⭐ Make huge profits on trading ⭐⭐ D
JavaScript | 16 sec ago | 0.24 KB
-
⭐✅ Swapzone Glitch ✅ Working⭐⭐⭐ V
JavaScript | 24 sec ago | 0.24 KB
-
⭐✅ MAKE $2500 IN 15 MIN⭐⭐⭐ G
JavaScript | 27 sec ago | 0.24 KB
-
⭐⭐⭐Make $15OO in 2O minutesV E⭐⭐
Java | 29 sec ago | 0.10 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ 5
JavaScript | 35 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