Steve Areola
Followers: 0 Following: 0
Statistics
0 Questions
4 Answers
RANK
227,546
of 295,569
REPUTATION
0
CONTRIBUTIONS
0 Questions
4 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20,247
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154,105
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
RK4 Function Code
clc a=0;b=2;N=10;alph=0.5; h=(b-a)/N;t(1)=a;w(1)=alph; f=@(t,y) y-t^2+1; for i=2:N+1 k1= h*f(t(i-1),w(i-1)); k2= h...
1 year ago | 0
Euler's method
clc a=0;b=2;N=10; alph=0.5; h=(b-a)/N; t(1)=a; w(1)=alph; f = @(t,y) y-t^2+1; for i=2:N+1 t(i)=a+(i+1)*h; w(i)=w(i...
1 year ago | 0
Composite Simpson's 1/3 rule code error
clc a=0;b=2;n=8; h=(b-a)/n; f=@(x) exp(2*x)*sin(3*x); XI0= f(a) +f(b); XI1 = 0; XI2 = 0; for i = 1:n-1 x = a+i*h; ...
1 year ago | 0
Secant
clc p0 = 0; p1 = 1; tol = 10^-6; N=12; i = 2; f = @(x) %write function; q0 = f(p0); q1 = f(p1); while i<=N p = p1- (q1...
1 year ago | 0