Trapezoidal rule in a for loop

5 visualizaciones (últimos 30 días)
Mathias Pettersen
Mathias Pettersen el 23 de Sept. de 2019
Comentada: James Tursa el 24 de Sept. de 2019
d
  2 comentarios
awezmm
awezmm el 23 de Sept. de 2019
Are you getting an error or the values are just not coming out right
James Tursa
James Tursa el 24 de Sept. de 2019
Mathias, it is considered rude to delete your question after it has received answers. This also can render this thread useless to other readers who might be having similar problems.

Iniciar sesión para comentar.

Respuesta aceptada

James Tursa
James Tursa el 23 de Sept. de 2019
Editada: James Tursa el 24 de Sept. de 2019
You made a good start, but there are several problems with your summation. You don't accumulate into your trapez variable, you don't use your index i in your function evaluation, you have your endpoints evaluated multiple times inside your loop, etc.
It would probably be best for you to code the logic up exactly as it appears in the formula. So, first do the summation. Then add the endpoints. Then multiply by (b-a)/n. Also, why not make your life simpler and use the same index variable k that is used in the formula? So, the outline would be this:
trapez = 0; % Initialize your summation to 0
for k = 1: n - 1 % use k as the index so it looks like the formula
trapez = trapez + calculateFormula(_____); % you fill in the value here based on formula
end
trapez = _____ + trapez + _____; % you add in the end points here
trapez = _____ * trapez; % you fill in the multiplying factor here
Try to fill in the blanks above to see if you can get it to work. If you have more problems, come back and ask for more help with the specific problems you are having.
  2 comentarios
Mathias Pettersen
Mathias Pettersen el 24 de Sept. de 2019
thanks so much. Does this look right?
a = -3;
b = 3;
n = 10;
trapez = 0;
for k = 1: n - 1
trapez = trapez + sum(calculateFormula(a + (k.*(b-a)./n)) + calculateFormula(b)./2);
end
trapez = trapez + calculateFormula(a)/2;
trapez = trapez * ((b-a)/n)
James Tursa
James Tursa el 24 de Sept. de 2019
Editada: James Tursa el 24 de Sept. de 2019
No, it doesn't. But you are getting closer. You don't need the sum( ) function inside your loop since you are in fact doing the summation manually. Also, the f(b)/2 is one of the endpoints that gets added after the loop (look at your formula closely and you will see that it is not intended to be inside the summation).

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by