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

2 次查看(过去 30 天)
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)

采纳的回答

Matt J
Matt J 2021-11-19
编辑:Matt J 2021-11-19
Perhaps as follows,
mean(varfun(@mean,x,'InputVariables',@isnumeric,'OutputFormat','uniform'))

更多回答(1 个)

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

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by