Question: Generate by measdata.m an array A withsize (365,24), containing temperature measurements for an entire year [1 January,..., 31 December], 24 hours a day [00.00h,...,23.00h].
Use A=measdata to create the individual data;
Question 1: Compute and plot 4 mean temperature profiles (temperatures a function of the time of the day) for each of four-periods of one year in a single sub-figure (January-March; April-June; July-September; October-December).
Estimated each of them by a 4th order polynomial. Plot the data as dots or small crosses and the fit as a line.
Question 2: Determine for each day the time/hour at which the minimum and maximum temperature occur. Plot these times versus the days of the year in a subplot.
Question 3 Summarize mean temperatures of the 4 periods in the year (see 1.1) and the 4 intervalsofthe day [0-5], [6-11],[12-17], [18-23] h. in a 4 x 4table.Use e.g. the fprintf command to construct the table
Answer these questions and show each and every step with example.