How to make a sum series using a for loop
16 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Petch Anuwutthinawin
le 11 Juin 2021
Réponse apportée : Geoff Hayes
le 11 Juin 2021
Given the power series of sin(x) I have to create a function that takes in x vector and N (number of terms in the sequence) and outputs the power series approximation of pi at that N. I cannot use any trig command or any sum command in the answer. I have written this code so far, which says that the sum= the first term (which would be x) plus the k'th term in the sequence. My problem is that MatLab keeps printing out the x value as the answer instead of the sum. How can I fix this code to make it so that MatLab prints out the sum.
for k=1:N
s=x+((-1)^k)*((x^(2*k+1))/factorial(2*k+1));
end
0 commentaires
Réponse acceptée
Geoff Hayes
le 11 Juin 2021
Petch - in your code, you are assigning the kth iteration value (plus x) to s rather than summing all values. Try instead
s = x;
for k=1:N
s = s + ((-1)^k)*((x^(2*k+1))/factorial(2*k+1));
end
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!