Use the Programming Language —- > MATLAB <—
Write a while loop that assigns summedValue with the sum af all values from 1 to userNum. Assume userNum is always greater than or equal to 1. Note: You may need to define additional variables. Ex: If userNum is 5, then summedValue is 15 (e. 1+2+3+4 5-15) Your Function save CReset MAI LAB Documentation 1 function sumnedvalue SummationwithLoop (userNum) 2 % summation of all values from 1 to userNun summedvalue ; i -1 % Write a while loop that assigns sumedValue with the % sum of all values from 1 to userNum 18 end Code to call your function C Reset 1 SumnationithLoop(5) Run Function
Expert Answer
Complete Code:
Sample Outputs:
CODE TO COPY:
function summedValue = SummationWithLoop(userNum)
% Summation of all values from 1 to userNum
summedValue = 0;
i = 0;
% use a while loop that assigns summedValue with the
% sum of all values from 1 to userNum
while(i <= userNum)
summedValue = summedValue + i;
i = i + 1;
end
end