Create a function file called seqSum.m for this problem.
Write a function seqSum(a, N) that returns the sum of the sequence of a, a/2, a/3, …, a/N where a and N
are integers. The function should return the value of a + a/2 + a/3 + … + a/N. You are not allowed to use
“for” or “while” loop for this problem.
Hint: create array(s) and then perform the summation
Comments
Leave a comment