smoothing spline and save
1 次查看(过去 30 天)
显示 更早的评论
I have a data x and y... I fitted smoothing spline. Now i want to save the fit parameters so that i can plot it in some other softwares with other data files.
I followed following code... which is doing exactly what i want...
a=load('v_band.dat');
x=a(:,16);
y=a(:,4);
options = fitoptions('Method','Smooth','SmoothingParam',0.842)
[f,gof,out] = fit(x,y,'smooth',options)
plot(f, x, y)
Or is there any other method by which i can do so...???
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Smoothing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!