我已经根据一些数据点拟合了一条曲线。完成之后,我得到一个cfit对象。如果我绘制cfit,则可以看到曲线。但是,我需要来自cfit的插值数据点,以便可以找到信号的谐波失真。 如何获得插值数据点?
答案 0 :(得分:1)
如果您有RewriteEngine on
RewriteRule ^profile/([A-Za-z0-9-]+)/?$ profile?user=$1 [L]
对象,则只需对感兴趣的点进行评估。这是基于Matlab Documentation的示例代码:
cfit
评估多点拟合值
load census
curvefit = fit(cdate,pop,'poly3','normalize','on');
plot(curvefit,cdate,pop);
您现在可以将xi = (2000:10:2050).';
y = curvefit(xi)
y =
276.9632
305.4420
335.5066
367.1802
400.4859
435.4468
和xi
用作插值数据点。