Answer :
Final answer:
To compute the sample mean and median, sort the data and apply the relevant formulas. To compute the sample standard deviation, calculate the deviations, square them, and average the squared deviations. To produce a histogram plot, divide the data into bins and count the observations in each bin.
Explanation:
The student is requested to compute the sample mean and median of the given data set using MATLAB. First, the data should be sorted in ascending order using the sort command. After sorting, the sample mean can be computed by summing all the values in the data set and dividing by the number of observations. The sample median can be found by taking the middle value if the number of observations is odd, or by averaging the two middle values if the number of observations is even.
To compute the sample standard deviation, firstly the deviation of each observation from the sample mean should be calculated. Then, these deviations should be squared, and the average of the squared deviations should be computed. Finally, the square root of the average squared deviation gives the sample standard deviation.
To produce a histogram plot of the data with a bin size of 10, the sorted data can be divided into bins with widths of 10. The number of observations falling within each bin can be counted and plotted on a histogram.
Learn more about Sample Statistics here:
https://brainly.com/question/34187345
#SPJ11