how to find the average of a table 366-by-6

3 views (last 30 days)
I've modified my table into a 366-by-6 and am trying to get the total average. So far, I have only gotten the average of each single file using A= varfun(@mean,x,'InputVariables',@isnumeric)

Accepted Answer

Matt J
Matt J on 19 Nov 2021
Edited: Matt J on 19 Nov 2021
Perhaps as follows,
mean(varfun(@mean,x,'InputVariables',@isnumeric,'OutputFormat','uniform'))
  2 Comments
Matt J
Matt J on 19 Nov 2021
You're very welcome, but please Accept-click the answer to indicate so.

Sign in to comment.

More Answers (1)

Peter Perkins
Peter Perkins on 23 Nov 2021
Another possibility would be
mean(T{:,vartype("numeric")},"all")
But beware, the {} there will downcast mixed numeric types.

Products


Release

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!