Help with loops calculating value
    3 views (last 30 days)
  
       Show older comments
    
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 Comment
  Walter Roberson
      
      
 on 20 Nov 2017
				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.
Answers (2)
  KL
      
 on 20 Nov 2017
        
      Edited: KL
      
 on 20 Nov 2017
  
      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 Comments
  Walter Roberson
      
      
 on 20 Nov 2017
        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 Comments
See Also
Categories
				Find more on Loops and Conditional Statements in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

