CS211 Lab Policy:
Instructions:
You will create one MATLAB program named Lab17 in file Lab17.m for this lab. Perform the tasks described below to generate graphs that present information about the 2007 Pikes Peak Marathon. The data you will use comes from http://www.pikespeakmarathon.org/results.htm. The original data has been modified to make this lab easier to program.
Row vector | Description | Size (Type) |
Overall_position | The runner's finishing place (e.g., 1st, 2nd, 3rd, etc.) | 882x1 (double) |
Age_position | The runner's finishing place in their age category | 882x1 (double) |
Age_total | The total number of runners in this runner's age category | 882x1 (double) |
Name | The runner's name | 882x24 (char) |
Age | The runner's age | 882x1 (double) |
Gender | The runner's gender | 882x1 (char) |
Town | The runner's home town | 882x7 (char) |
State | The runner's home state (or country) | 882x2 (char) |
Ascent | The time it took for the runner to get to the top of Pikes Peak | 882x7 (char) |
Descent | The time it took for the runner to get down from the top of Pikes Peak | 882x7 (char) |
Total | The total race time for the runner | 882x7 (char) |
Turn-in:
Submit your Lab17.m file.