Final answer:
The provided MATLAB program prompts for student marks, calculates letter grades based on the provided scale, and outputs a neatly organized table.
Step-by-step explanation:
The following MATLAB program will prompt the user to input a vector of student marks and then it will provide the letter grades for each mark according to the given grading scale. The program utilizes conditional statements to determine the corresponding letter grade and outputs a table to the command window with the marks and grades neatly organized and aligned.
To create a table that is user-friendly and clearly displays the student marks alongside their respective letter grades, the program makes use of MATLAB's formatting commands such as fprintf to align the text and ensure a clean presentation of the data. The program covers marks ranging from 0 to 100, providing a letter grade for each range, and outputs a dash for marks that are below 0 or above 100.