Clear Filters
Clear Filters

Hi, I'm new to matlab and wanted to find the mean of all the values in my matrix/data set and was wondering how I would do this?

1 view (last 30 days)
This
mean(a(:))
has been suggested but it has not worked for me.

Accepted Answer

Mathias Andersen
Mathias Andersen on 16 May 2020
See the documentation for the mean command here
So if you want the mean of an entire matrix write the following
mean(a,'all')

More Answers (0)

Categories

Find more on Shifting and Sorting Matrices in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!