Taylor series for e^x with loop
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
How would I solve this problem and only compute the first 12 interations?
Respuestas (1)
Lateef Adewale Kareem
el 19 de Jul. de 2022
%% This is more efficient
x = 2;
v = 1;
n = 1;
d = 1;
for i = 1:20
n = n*x;
d = d*i;
v = v + n/d;
end
fprintf('Computed Value: %f', v)
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!