Using MATLAB, how do I report the grade distribution graphically using a histogram based on the letter grade? The x-axis should display the letter grades from A to F, and the y-axis should show the frequency of each letter grade.
letter_grades = {'A+', 'C+', 'C', 'B+', 'B+', 'D+', 'B', 'C', 'E', 'D+', 'D', 'A', 'C', 'D+', 'D+', 'B+', 'A', 'D', 'B+', 'D+', 'C+', 'F', 'C', 'B+', 'D', 'D+', 'C+', 'A+', 'B', 'D+', 'E', 'A', 'D+', 'B+', 'B', 'C+', 'B+', 'B', 'C+', 'B', 'F', 'A', 'C', 'B', 'B', 'C+', 'B', 'C+', 'F', 'D', 'B', 'B', 'D', 'A', 'C+'}