Taylor series for e^x with loop
12 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Risposte (1)
Lateef Adewale Kareem
il 19 Lug 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)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!