write an m-file using while loop which calculates the sum of elements within the following vector x=[5 2 -9 10 -1 9 -1] until a number greater than 8 is met? please help i have tried and i am confused on how to do this.

14 views (last 30 days)
i have tried and my codes don't work, how can i do this with a while loop?

Accepted Answer

Thorsten
Thorsten on 6 Oct 2015
Edited: Thorsten on 6 Oct 2015
x=[5 2 -9 10 -1 9 -1];
partialsum = 0;
i = 1;
while partialsum <= 8
partialsum = partialsum + x(i);
i = i + 1;
end
  1 Comment
kelechi okegbe
kelechi okegbe on 6 Oct 2015
Perfect answer Thorsten, I was indeed summing the entire loop instead of summing incrementally. Thank you Thorsten and thanks to all, my problem is solved.

Sign in to comment.

More Answers (1)

Joseph Cheng
Joseph Cheng on 6 Oct 2015
general outline would be
x=[5 2 -9 10 -1 9 -1];
while currentsum<=8
currentsum = %what you want to sum up.
end
  2 Comments
kelechi okegbe
kelechi okegbe on 6 Oct 2015
Thank you for your answer. When i run it, it just sums up the entire vector. It is supposed to stop summing at 5+2+(-9)+10+(-1)+9=16.
x=[5 2 -9 10 -1 9 -1];
while currentsum<=8
currentsum= sum(x)
end
% code
It returns 15 instead of 16.
Walter Roberson
Walter Roberson on 6 Oct 2015
"%what you want to sum up." should only be a subset of x, not all of x. Your loop should be incrementing the index of the last element that you are paying attention to. sum(x(1:SomeIndex)) and keep increasing SomeIndex. Make sure you stop when you reach the end of the array.

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!