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!

 Risposta accettata

Michael Haderlein
Michael Haderlein il 31 Mar 2015
Modificato: Michael Haderlein il 31 Mar 2015
just:
mean(M(M(:,1)<25,2))
The keyword here is logical indexing, btw. You can find good tutorials about it online.

Più risposte (0)

Categorie

Scopri di più su Sparse Matrices in Centro assistenza e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by