Borrar filtros
Borrar filtros

How to find a y value for a given x in a plot?

12 visualizaciones (últimos 30 días)
Anirban Mandal
Anirban Mandal el 30 de Nov. de 2021
Comentada: Anirban Mandal el 1 de Dic. de 2021
I have plotted a curve with a given dataset. Now I want to find the value of y for a certain value of x. The code and graph is give below.
filen='argo-profiles-2902294.nc'
p=ncread(filen,'PRES');
t=ncread(filen,'TEMP');
p1=p(:,2)
t1=t(:,2)
plot(t1,p1,'k')
set(gca,'YDir','reverse')
Now, let's say I want to find the pressure value for a certain x value (say 25). What to do?

Respuesta aceptada

Chunru
Chunru el 30 de Nov. de 2021
x1 = 25;
y1 = interp1(t1, p1, x1);
  5 comentarios
Chunru
Chunru el 1 de Dic. de 2021
p1 = readmatrix("p1.xlsx");
t1 = readmatrix("t1.xlsx");
whos
Name Size Bytes Class Attributes ans 1x32 64 char p1 970x1 7760 double t1 970x1 7760 double
% Your data has nan
p1(end-10:end)
ans = 11×1
NaN NaN NaN NaN NaN NaN NaN NaN NaN NaN
% Remove the nan first
idx = any(isnan([t1 p1]), 2);
t1(idx) = []; p1(idx)= [];
p2=interp1(t1,p1,20)
p2 = 92.7622

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by