define function to data set

1 次查看(过去 30 天)
Hello, please if you could help me to fit a function to a data series, I understand that the 'fit' function of matlab works excellent, but it does not give me good results. What I have to do is fit the best possible function to a figure that has the semi-logarithmic vertical scale. I attach the data and the respective figure. Thanks greetings.
load x.txt
load y.txt
semilogy(x,y,'ob')

回答(1 个)

KSSV
KSSV 2021-6-22
x = importdata('x.txt') ;
y = importdata('y.txt') ;
y = log(y) ;
p = polyfit(x,y,2) ;
yi = polyval(p,x) ;
plot(x,y,'.r',x,yi,'.b')

类别

Help CenterFile Exchange 中查找有关 Interpolation 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by