Make the summary table with daily min max and mean tempertur
Make the summary table with daily min, max and mean temperture (It\'s \"daily\", not overall or monthly!), I need the code rather than the results. (Prefer R, Matlab or Maple), Thanks!
Excel File: https://www.dropbox.com/s/ts8lsu53kn24oqq/table1.xls?dl=1
Solution
Following is the matlab code that can be used to read data into matlab, and then calculate min, max and mean. Save the file in c drive or modify the path in xlsread() appropriately.
num= xlsread(\'c:\\table1.xls\')
min(num)
max(num)
mean(num)
