Question: Please create a function that returns the minimum element and its index in a numeric array ( single - row vector or single - column
Please create a function that returns the minimum element and its index in a numeric array singlerow vector or singlecolumn vector Name your function as findMin
The input to the function can be either a row vector, a column vector, or a scalar of numeric data types otherwise the function returns a vector of NaNs NaN
NaN
Your function returns scalar values in the format of minval, minidx which represents the value and index of the minimum element, respectively. For
example, return if input is the scalar
If the array contains duplicates of the minimum element, keep only the smallest index of the minval. DO NOT return multiple indices.
You are not permitted to use the builtin min or max functions. You can exploit if for or while structures to create your functions. Any algorithm or method can be
used.
The function header is already given as function minval, idx findMin input
Function
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
