MATLAB: How to code the Average monthly temperature? I’m newbie in matlab.. Please help me

averagetemperature

Best Answer

It looks like you have a data matrix of size 24X12 . Use mean to get the average. Read about the function mean. If A is your data matrix, use:
iwant = mean(A)
Related Question