Sipmson's rule in Matlab
3 ビュー (過去 30 日間)
古いコメントを表示
I'm trying to program the following Simpson's rule problem:
This is my attempt so far:
function simp = mysimp(fName,x2,x1,m)
h=(x2-x1)/(m);
x = x1:h:x2;
f = fName(x);
simp = f(1) + f(end);
for I = 2:2:m
simp = simp + 4*(f(I));
end
for I = 3:2:m
simp = simp + 2*(f(I));
end
simp = simp*(h/3);
end
This isn't returning the right answer for me. Can someone help me out?
0 件のコメント
回答 (1 件)
Geoff Hayes
2015 年 10 月 12 日
Ollie - I think that you almost have the correct implementation for Simpson's algorithm, but you may want to reconsider how you are determining h. Note that the question is telling you what h should be. So is your calculation giving you the same value? You may want to pass h into your function and calculate h from that. Like the following
func = @(x) 2*x + 2*sin(x) - 4;
mysimp(func, 3.1,3,0.1)
and your function mysimp is defined as
function simp = mysimp(fName,x2,x1,h)
m = floor((x2-x1)/h);
% etc.
Note how we calculate m from the inputs and so have m subintervals. Now notice how you are creating the array of x values
x = x1:h:x2;
A problem with this is that you are not guaranteed that the last value in this array will be x2 (it all depends on x1 and the step size h). Instead, you should use the linspace function as
x = linspace(x1,x2,m);
to create an array of m+1 elements starting from x1 and ending at x2 (the step size between each value will be near enough to h). We then calculate the y values as
y = fName(x);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Numerical Integration and Differential Equations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!