フィルターのクリア

Curve fitting - periodic function

26 ビュー (過去 30 日間)
Alexandre
Alexandre 2012 年 2 月 6 日
Hi,
I would like to fit a curve to a set of data (I know the function is periodic). The problem is, all the fittings I tried are unable to reproduced the periodicity of the function.
Is there any way to use the curve fitting toolbox to fit a periodic function data set using only 1 period?
Thank you, Alex

採用された回答

Richard Willey
Richard Willey 2012 年 2 月 6 日
Here's a pretty basic example
X = linspace(0, 2*pi, 100);
X = X';
Y = sin(X) + randn(100,1);
foo = fit(X,Y, 'sin1')
scatter(X,Y);
hold on
plot(foo)
  1 件のコメント
Alexandre
Alexandre 2012 年 2 月 7 日
Thank you very much, this was exactly what I was looking for!

サインインしてコメントする。

その他の回答 (1 件)

Andrew Newell
Andrew Newell 2012 年 2 月 6 日
You could try selecting "Sum of sin functions" for the type of fit.

カテゴリ

Help Center および File ExchangeInterpolation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by