Unspecified coefficients from function 'fit'

조회 수: 4 (최근 30일)
Daniel Stocks
Daniel Stocks 2019년 11월 13일
답변: Steven Lord 2019년 11월 13일
Hi, I'm trying to use the function 'fit' to fit a surface to a set of 3D data I have. the command I use is
sf = fit([data(:,1), data(:,2)], data(:,3), 'lowess')
where each data column is 400 elements. The function does output and I am able to plot the surface however no function or coefficients are outputted. Only
Locally weighted smoothing linear regression:
sf(x,y) = lowess (linear) smoothing regression computed from p
Coefficients:
p = coefficient structure
If I use a different fit style such as 'poly23' I do get a function and coefficients however the surface is a bad fit. I was just wondering if this our put is what I'm suposed to get from the input 'lowess' or if there is a way I can actually get a function out of this.
Thank you.

답변 (2개)

dpb
dpb 2019년 11월 13일
fit returns a fit object (either cfit or sfit, depending on curve or surface). There are functions to return things out of the object documented at <Curvefit/fit-postprocessing>, specifically the function coeffvals. You can also probe the fit object structure itself but many of these outputs are only available through the functions as the structure itself is semi-opaque.
Follow the "See Also" breadcrumbs in the documentation...it's scattered around to find all the pieces.

Steven Lord
Steven Lord 2019년 11월 13일
Lowess smoothing is a type of nonparametric fitting. That output appears correct. There are other methods you can use if you want to extract or interpret fit parameters.
If you want to evaluate your lowess fit for new data points that is possible using the sf object directly.
load franke
f = fit([x y],z,'lowess');
f(mean(x), mean(y))

카테고리

Help CenterFile Exchange에서 Linear and Nonlinear Regression에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by