Borrar filtros
Borrar filtros

Finding Corresponding x axis values of a constant curve on Y-axis

7 visualizaciones (últimos 30 días)
Sandip Ghatge
Sandip Ghatge el 8 de Jun. de 2020
Comentada: Sarah Nasra el 1 de En. de 2023
Hello,
I have a curve similar to shown below in the image.
I plan to find the 'x' values at which the function 'y' is maximum
I have denoted 'y' by 'cylpressure'
When i write the following,
[y,x] = max(cylpressure);
It returns me values
y = 400000
x= 118
But i need the values of 'x' when y starts to get constant(i.e. at x = 118, which i got from above code) and when y starts dwelling down(i.e at x = 180)
What changes must be done?

Respuestas (1)

KSSV
KSSV el 8 de Jun. de 2020
Let (x,y) be your data. Where y is cylpressure Dont use
[y,x] = max(cylpressure);
Rather, use:
[val,idx] = max(cylpressure);
In the baove val gives you maximum value of y and idx gives you index of the maximum value. You can get the respective value of x using x(idx).
If you know the value of x and you want to get corresponding y value use interp1.
yi = interp1(x,y,xi) ;
  4 comentarios
Sandip Ghatge
Sandip Ghatge el 8 de Jun. de 2020
Thank you, i guess 'sort' will work. I was aware about findpeaks but i dont have a signal processing toolbox hence did not use it.
Sarah Nasra
Sarah Nasra el 1 de En. de 2023
how we can do the opposite? if i know the y value and want to extract the x value?

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by