The mean of a subset of data

3 views (last 30 days)
John
John on 7 Jan 2013
Hello,
I have a vector of acceleration values, both positive and negative negative numbers.
How could I find the mean value of the values greater than 0 only? i.e. the mean positive acceleration?
Thank you

Accepted Answer

José-Luis
José-Luis on 7 Jan 2013
mean(your_data(your_data>0));

More Answers (0)

Categories

Find more on Get Started with MATLAB 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!