Borrar filtros
Borrar filtros

fit scatter plot to a curve

2 visualizaciones (últimos 30 días)
Tesla
Tesla el 24 de Mayo de 2022
Comentada: Tesla el 24 de Mayo de 2022
I want to fint those scatter points to a curve.
I tried using lsline but seems not working, i tried also with polyfit.
here my small code
clc, clear all;
x = [0,0.1, 0.2, 0.3, 0.4, 0.46, 0.55, 0.6];
y =[0, 0.0982, 0.1359, 0.126, 0.0778, 0.0827, 0.063, 0.0599];
% f= polyfit(y,x,7)
% xx = linspace(min(x), max(x));
% %xx = 0:0.1:2.5; %%%%%%%%%%%%%%%%%%%%%%
% v = polyval(f, xx); %%%%%%%%%%%%%%%%%%%
% plot(x,y,'o', xx,v,'-')
plot (x,y)
lsline

Respuesta aceptada

Walter Roberson
Walter Roberson el 24 de Mayo de 2022
x = [0,0.1, 0.2, 0.3, 0.4, 0.46, 0.55, 0.6];
y =[0, 0.0982, 0.1359, 0.126, 0.0778, 0.0827, 0.063, 0.0599];
f= polyfit(x,y,7)
xx = linspace(min(x), max(x));
v = polyval(f, xx);
plot(x,y,'o', xx,v,'-')
  1 comentario
Tesla
Tesla el 24 de Mayo de 2022
Thank you very much it works now

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Get Started with Curve Fitting Toolbox en Help Center y File Exchange.

Productos


Versión

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by