Help with loops calculating value
1 次查看(过去 30 天)
显示 更早的评论
I have a function:
function [ I, h ] = Simpson( f, a, b, tol )
n=2;
h=(b-a)/n;
x=h/3;
I=x*(f(a)+4*f((a+b)/2)+f(b));
Iold=I;
n=2*n;
if abs((I-Iold)/Iold)>=tol
n=2*n;
h=(b-a)/n;
for j=1:n/2-1
term1=2*f(2*xj);
xj=a+j*h;
end
for i=1:n/2
term2=4*f(2*xj-1);
xj=a+j*h;
end
x=h/3;
I=x*(f(a)+term1+term2+f(b));
n=n*2;
end
However, I want the function to loop to keep calculating I until
abs((I-Iold)/Iold) is less than the input tol.
How do I do this? Presently, it only calculates when n=2.
1 个评论
Walter Roberson
2017-11-20
Why do you have
n=2*n;
twice in your loop? And just before you loop you also have it. Considering the lack of comments, it looks like you are doing too many of those changes to n.
回答(2 个)
KL
2017-11-20
编辑:KL
2017-11-20
I don't clearly understand what you're trying to do but it looks like you may want to use a while loop,
while abs((I-Iold)/Iold)>=tol
%here goes the part to be repeated until the above condition fails
end
additionally, I have noticed few other things, when you say
for j=1:n/2-1
term1=2*f(2*xj);
xj=a+j*h;
end
for i=1:n/2
term2=4*f(2*xj-1);
xj=a+j*h;
end
- You haven't defined xj previously so it's gonna throw you an error.
- you're simply repeating the task until you calculate a final value, then why not directly calculate the final value?
j=floor(n/2);
xj = a+j*h;
term1 = 2*f(2*xj);
and similarly the other loop content.
0 个评论
Walter Roberson
2017-11-20
You have
for j=1:n/2-1
term1=2*f(2*xj);
xj=a+j*h;
end
every iteration of j, that is going to overwrite all of term1 and xj. There is no point in calculating values that are just going to be overwritten.
Perhaps you should be recording all of the terms and totaling them ?
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!