Borrar filtros
Borrar filtros

How to set x > 0, at 2nd order polynomial using polyfit.

2 visualizaciones (últimos 30 días)
Nurul Hazira
Nurul Hazira el 6 de Mayo de 2021
Comentada: Nurul Hazira el 6 de Mayo de 2021
Hi I need help, I have imported a txt file into my matlab and have set the x and y value, then I got stuck to create the line on graph at x > 0. Below is my normal code without set x > 0.
p2 = polyfit(x,y,2);
f = polyval(p2,x);
plot(x,f,'-')

Respuesta aceptada

KSSV
KSSV el 6 de Mayo de 2021
idx = x > 0 ;
x = x(idx);
y = y(idx) ;
p2 = polyfit(x,y,2);
f = polyval(p2,x);
plot(x,f,'-')

Más respuestas (0)

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by