Scientific Calculator
Alex/integral
By Alex
f=function(x){%};
a=%;
b=%;
step=(b-a)/10000;
rec=function(b){(b==a)? f(a) : rec(b-step)+f(b)};
(rec(b)-(f(a)+f(b))/2)*step
By Alex
f=function(x){%};
a=%;
b=%;
step=(b-a)/10000;
rec=function(b){(b==a)? f(a) : rec(b-step)+f(b)};
(rec(b)-(f(a)+f(b))/2)*step
1 Comment
i have no idea what you are saying
Sign in to leave a comment