Help with calculating sums

1 view (last 30 days)
O
O on 14 Nov 2013
Answered: O on 19 Nov 2013
Write a program that receives an integer (n) and then calculate the sum of integers 1 to n (exp. 1 + 2 + 3 + ….. + n) using for loop
so confused :(
  1 Comment
Roger Stafford
Roger Stafford on 14 Nov 2013
As a last desperate measure you could simply write:
the_sum = n*(n+1)/2;
as Gauss is said to have correctly done in his primary school years.

Sign in to comment.

Accepted Answer

Image Analyst
Image Analyst on 14 Nov 2013
Use inputdlg() to get n - look in the help for examples. Then use a for loop. Here's a hint to get you started.
theSum = 0;
for k = 1 : n
% your code goes here.
theSum = theSum + ........
end
I don't know what you mean by exp. Do you want e to the power? Like exp(1) + exp(2) + exp(3) + .... OR do you want exp(1+2+3+.....????

More Answers (1)

O
O on 19 Nov 2013
It means (example) ... i thought it meant exponential too. Thanks a million!

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!