Matrix, Mean coloum 2, with a value in coloum 1 < 25

Hello!
I am looking at a 5 x 2 matrix, which i need to mean certain numbers in the secound coloum. But the mean depends on what the value the first coloums has.
Here is the Matrix:
M =
25 0.1090
23 0.0960
15 0.5170
40 0.9340
35 0.1090
For all numbers in coloum 1 < 25, i need to mean the numbers in coloum 2
I have been searching this site for a long time after an answer, but found nothing.
I hope you can help me! :)
Thanks!

 채택된 답변

Michael Haderlein
Michael Haderlein 2015년 3월 31일
편집: Michael Haderlein 2015년 3월 31일
just:
mean(M(M(:,1)<25,2))
The keyword here is logical indexing, btw. You can find good tutorials about it online.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by