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

2 visualizaciones (últimos 30 días)
Gurleen Bajwa
Gurleen Bajwa el 19 de Nov. de 2021
Respondida: Peter Perkins el 23 de Nov. de 2021
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)

Respuesta aceptada

Matt J
Matt J el 19 de Nov. de 2021
Editada: Matt J el 19 de Nov. de 2021
Perhaps as follows,
mean(varfun(@mean,x,'InputVariables',@isnumeric,'OutputFormat','uniform'))
  2 comentarios
Gurleen Bajwa
Gurleen Bajwa el 19 de Nov. de 2021
Thanks! It worked!
Matt J
Matt J el 19 de Nov. de 2021
You're very welcome, but please Accept-click the answer to indicate so.

Iniciar sesión para comentar.

Más respuestas (1)

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

Categorías

Más información sobre Logical en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by