Question: Complete the function using matlab In this code, you will be evaluating the minimum value of an input vector, provided there are three values in

Complete the function using matlab
In this code, you will be evaluating the minimum value of an input vector, provided there are three values in it. Inputs: Vector - A vector that contains three elements within it. Outputs: Minimum - The minimum value in Vector. Process: In this exercise, you will be using two if statements to find the minimum value of a three element vector. The steps are given below. Step 1: Make Minimum equal the first element of the input vector. Step 2: If the second element of the input vector is less than Minimum, make Minimum equal the second element of the input vector. Step 3: If the third element of the input vector is less than Minimum, make Minimum equal the third element of the input vector. Function Template: function Minimum = min3(Vector) %INSERT CODE end
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
