CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 17:34:12 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=e3a81a2b3c818ecd182c1692a24122ea620612eee1b418dbcdb6fb171ccc18dea%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22ca4mNSL6O46UEg1Yd_TI7NOWhgVBKt_6%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d858bc8d67d3d4-BLR
Adaptive Simpson's Method with true error for g = e^xsin(e^x) - Pastebin.com
SHARE
TWEET

Adaptive Simpson's Method with true error for g = e^xsin(e^x)
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function [outI, outX] = adaptive_two_simpson_g_error (func, a, b, tol)
- m = (a+b)/2;
- ## c = 1/(1/16-1);
- ## k = 1/15;
- ## g = e.^x.*sin(e.^x)
- I = cos(e^a)-cos(e^b);
- [outI_1, outX_1] = composite_two_simpson(func, a, m, (m-a)/2 );
- [outI_2, outX_2] = composite_two_simpson(func, m, b, (b-m)/2 );
- if abs(I - (outI_1 + outI_2)) < tol
- outI = outI_1 + outI_2;
- outX = unique([outX_1, outX_2]);
- else
- [outI_3, outX_3] = adaptive_two_simpson_g_error(func, a, m, tol/2);
- [outI_4, outX_4] = adaptive_two_simpson_g_error(func, m, b, tol/2);
- outI = outI_3 + outI_4;
- outX = unique([outX_3, outX_4]);
- endif
- endfunction
Advertisement
Add Comment
Please, Sign In to add comment
-
💡 Instant BTC Profit Method ✅ Working
JavaScript | 2 sec ago | 0.24 KB
-
📌 Instant BTC Profit Method ✅ Working V
JavaScript | 2 sec ago | 0.25 KB
-
⭐⭐⭐Exploit 500$ in 15 Minutes⭐⭐
Java | 8 sec ago | 0.10 KB
-
💡 Instant BTC Profit Method ✅ Working
JavaScript | 9 sec ago | 0.24 KB
-
✅ Make $2500 in 20 minutes⭐ T
JavaScript | 15 sec ago | 0.25 KB
-
📝 MAKE $2500 IN 15 MIN ✅ Working
JavaScript | 18 sec ago | 0.24 KB
-
⭐⭐⭐ChangeNOW Exploit⭐⭐
Java | 19 sec ago | 0.10 KB
-
📌 Swapzone +37% glitch ⭐ 5
JavaScript | 24 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