Question: . [ Submit on zyLabs ] Write a function that has one input, array 1 , and two outputs output, medianValue and meanValue. These outputs
Submit on zyLabs Write a function that has one input, array and two outputs output,
medianValue and meanValue. These outputs are as follows:
medianValue is the median of the numbers in your array. The median is the number in the
array that has exactly the same number of values that are greater than or equal to it as it has
values that are less than or equal to it In an array with an odd number of indices, this is a
value from the array itself. In an array with an even number of indices, this is the average of
the two middle values in the array. For example, for the array the median
is For the array the median is
Note that the numbers before and after the median can be the same as the
median. The median of is
meanValue is the average of all of the numbers in the array.
You should use a loop or multiple loops to find both of these, and you should NOT call either
of the following builtin MATLAB functions:
mean
median
sum
cumsum
Other functions, like mod, sort and length are allowed, and may be useful to you.
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
