Question: Matlab code Function Name: sumtorial nputs: 1. (double) A positive integer Outputs: 1. (double) The sumtorial of the input number Background As a Universal Studios
Function Name: sumtorial nputs: 1. (double) A positive integer Outputs: 1. (double) The sumtorial of the input number Background As a Universal Studios intem, you've been tasked with creating al of the trees for The Lorax 2! Every aspect of each tree has to be perfect-the color of each leaf, the texture of the branches, and most importantly the number of leaves per branch. You soon discover that the sumtorial (where you add all the successive numbers) gives you the perfect ratio for your branches. Realizing that you'll have to do milons of calculations for all the trees in the movie, you have the brilliant idea to write a MATLAB function to help you Function Description: Write a function that takes in a number, and recursively finds the sumtorial of this number. To find the sumtorial, use the following information: sumtorial(1) 1 sumtorial(n) = n + sumtorial(n-1 Notes: . You must use recursion to solve this
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
