Summation with for loops
Afficher commentaires plus anciens
Hi, I'm trying to plot the summation graph of y=1/(1+x)^2, so far my code is
x=[-10:10]
y=zeros(size(x))
for n=1:21
for k=1:11
terms= k.*(-x(n)).^(k-1)
y=y+terms
end
end
at the moment it is plotting a straight line but my friend believes this code is correct, any help is greatly appreciated.
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur 2-D and 3-D Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!