Why does my loop only run once
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Raquel Terrer van Gool
el 14 de Abr. de 2020
Comentada: Raquel Terrer van Gool
el 14 de Abr. de 2020
function I=trapezoidal(f,a,b,n)
h=(b-a)/n; % length of the interval
total=0;
x=a;
fa=f;
x=b;
fb=f;
for i=n
x=i;
fn=f+total
total=fn
end
I=fa+fb+2*fn;
end
0 comentarios
Respuesta aceptada
Peng Li
el 14 de Abr. de 2020
I assume that your parameter n is a scalar? If you want to let your script loop from 1 through n, you use for i = 1:n.
Más respuestas (0)
Ver también
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!