How to pick out the x-values for their corresponding y-values ?

5 visualizaciones (últimos 30 días)
Hi, I have two 1031X1 matrices, one represents the x-, the other one the y-values for a profile graph. I need the corresponding value couples where the y-values exceed a certain RMSE. I know how to get the y-values but how do I extract the right x-values?
Thanks a lot again!

Respuesta aceptada

KSSV
KSSV el 25 de Oct. de 2017
Get the indices of y satisfying the condition, pick the x values of those indices. Simple.
x = rand(100,1) ;
y = rand(100,1) ;
%%pick x satisfying certain condition of y
idx = y>0.8 ;
iwant = [x(idx) y(idx)]
  2 comentarios
Schirin Sellmann
Schirin Sellmann el 25 de Oct. de 2017
DOH!!!! Great, one comma too much and wrong brackets!
I send a digital huge lemoncake!!;) Thanks again!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graphics Object Properties en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by