Azzera filtri
Azzera filtri

How to find the mean of data contained in a column of a table?

20 visualizzazioni (ultimi 30 giorni)
i want the mean of the values stored in a column of a table. how can i do that?
For example :
1 11
2 22
3 33
4 44
5 55
is the column data. how to find mean of this both columns and store them in a variable.

Risposta accettata

A Jenkins
A Jenkins il 28 Gen 2014
Modificato: A Jenkins il 28 Gen 2014
a=[1 11; 2 22; 3 33; 4 44; 5 55]
b=mean(a)
b =
3 33

Più risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 28 Gen 2014
Modificato: Azzi Abdelmalek il 28 Gen 2014
A=[1 11; 2 22;3 33;4 44;5 55]
out=mean(A)

Categorie

Scopri di più su Tables in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by