Question: MatLab Help! Create the function described below: Function name should be problem_2 Function should accept 2 input arguments. The first input argument should be called
MatLab Help!
Create the function described below:
Function name should be problem_2
Function should accept 2 input arguments. The first input argument should be called iterations, the second input argument should be called the_number.
Function should have 2 output arguments. The first should be called result, and the second should be called loop_counter.
The function body should do the following:
It should create a for loop that will start at 1 and repeat "iterations" times. That is, the input argument called iterations, has a number inside. This number represents how many times the loop should repeat. The variable that is used to initialize your loop array (the thing that determines how many times your loop repeats) should be called loop_counter.
Each time the loop repeats, you should add the current value of your loop counter variable to whatever value is currently inside the input argument "the_number" and add this answer to whatever is in your output argument called result.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
