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

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.

 Accepted Answer

a=[1 11; 2 22; 3 33; 4 44; 5 55]
b=mean(a)
b =
3 33

More Answers (1)

Categories

Tags

Asked:

on 28 Jan 2014

Edited:

on 28 Jan 2014

Community Treasure Hunt

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

Start Hunting!