Answered step by step
Verified Expert Solution
Question
1 Approved Answer
1 . Using the maximum temperature data on page 4 of the Climate Report, create a 1 x 1 5 structure using the 'struct' function.
Using the maximum temperature data on page of the Climate Report, create a x
structure using the 'struct' function. Name the structure maxtempData and create fields for each
stationaveragenormalhighest and lowest Hint: import the workspace into
your LiveScript and fill the missing values
Find the Station with the lowest 'Average' temperature in the maxtempData structure by
following the steps below:
Extract the "Average" values from the structure into a cell array called averageValues
Convert the averageValues cell array to a numeric array called averageValuesNumeric
Hint: Use strdouble function
Find the index of the minimum value in the averageValuesNumeric numeric array.
Retrieve the corresponding station name for the minimum value and store it in stationName.
Display the minimum value and the name of the station.
Visualize the "Normal" temperature values in a bar graph.
Extract station names and corresponding 'Normal' values from the maxtempData structure
and store them in variables named stationNames and normalValues
Create a bar graph using normalValues
Annotate the bar graph to look like the graph shown below.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started