How to fit data to my customized form automatically?

3 次查看(过去 30 天)
I have quite a few sets of data and I want to fit them to y=a-b*x^3. I know that I could use cftool and do it manually for each data set. But it is really tedious. Is it a better way to do it? Thanks a lot.

采纳的回答

Jiro Doke
Jiro Doke 2011-2-23
Since you're already using Curve Fitting Toolbox, use the underlying functions: fitttype and fit.
Example:
f = fittype('a-b*x^3', 'independent', 'x', 'coefficients', {'a', 'b'});
fitobj = fit(rand(10,1), rand(10,1), f)
Alternatively, you can generate MATLAB code from cftool.

更多回答(1 个)

Paulo Silva
Paulo Silva 2011-2-23
doc polyfit
  3 个评论
Zhiting
Zhiting 2011-2-23
I want to fix p1 and p2 to be 0. I need y=p3*x^3+p0.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Get Started with Curve Fitting Toolbox 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by