Azzera filtri
Azzera filtri

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

2 visualizzazioni (ultimi 30 giorni)
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)

Risposta accettata

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

Accedi per commentare.

Più risposte (1)

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

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by