How to find the mean of data contained in a column of a table?
25 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
kelvina
el 28 de En. de 2014
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.
0 comentarios
Respuesta aceptada
Más respuestas (1)
Azzi Abdelmalek
el 28 de En. de 2014
Editada: Azzi Abdelmalek
el 28 de En. de 2014
A=[1 11; 2 22;3 33;4 44;5 55]
out=mean(A)
0 comentarios
Ver también
Categorías
Más información sobre Tables en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!