我使用MATLAB曲线拟合工具进行样条曲线平滑拟合,并从中创建了一个函数。如何访问Y拟合值,以便将它们输出到文件中?似乎我只看到x值以及来自fitresult的所有系数。这是matlab代码。谢谢!

function [fitresult, gof] = createFit(Freq, AmplNew)
%CREATEFIT(FREQ,AMPLNEW)
%  Create a fit.
%
%  Data for 'untitled fit 1' fit:
%      X Input : Freq
%      Y Output: AmplNew
%  Output:
%      fitresult : a fit object representing the fit.
%      gof : structure with goodness-of fit info.
%

%% Fit: 'untitled fit 1'.
[xData, yData] = prepareCurveData( Freq, AmplNew );

% Set up fittype and options.
ft = fittype( 'smoothingspline' );
opts = fitoptions( 'Method', 'SmoothingSpline' );
opts.SmoothingParam = 0.998;

% Fit model to data.
[fitresult, gof] = fit( xData, yData, ft, opts );

最佳答案

只需使用 feval :

y = feval(fitresult,x);

或只是使用
y = fitresult(x);

关于matlab - 从样条拟合获得y值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32751589/

10-12 22:31