Borrar filtros
Borrar filtros

finding point on a function

4 visualizaciones (últimos 30 días)
Jiung Shin
Jiung Shin el 9 de Dic. de 2020
Respondida: Ameer Hamza el 9 de Dic. de 2020
I have a function P using polyfit. How can I find the corrdinate on P when x=a?

Respuestas (2)

Ameer Hamza
Ameer Hamza el 9 de Dic. de 2020
You can use polyval()
xv; % x data-points
yv; % y data-points
p = polyfit(xv, yv, 3);
x = a;
y = polyval(p, x);

KSSV
KSSV el 9 de Dic. de 2020
Read about interp1.
Let (x,y) be your data.
xi = a ;
yi = interp1(x,y,xi) ;
[xi yi]

Categorías

Más información sobre Surface and Mesh Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by