Maclaurin Series, How can I find the answer?
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti

0 Commenti
Risposte (1)
Sahil Jain
il 20 Ott 2021
Hi. You can use a "for" loop to calculate this series as follows.
x = pi/3;
cosx = 1;
n = 10; % number of terms in the series
for i=1:n
cosx = cosx + (-1)^i*x^(2*i)/factorial(2*i);
end
0 Commenti
Vedere anche
Categorie
Scopri di più su Time Series 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!