Cubic Spline Fit-Just confirm the code

3 ビュー (過去 30 日間)
manish sharma
manish sharma 2012 年 7 月 11 日
Hi,
I have two vectors, X, and Y (of same size).
Now, I am interested in cubic spline fit of the data points (Y) at certain values (let's call this vector as "x") by the code:
-------------------------------
x = 1:1:125;
y = interp1(X,Y, x,'spline')
plot(x,y,'--r')
-------------------------------
PLEASE CONFIRM:
The "plot (x,y,'--r')" command will give the cubic spline fit for data points (represented in Y), right?

採用された回答

John Petersen
John Petersen 2012 年 7 月 11 日
right. You can verify this by
plot(X,Y,,'.',x,y);legend('Samples','Spline')
  1 件のコメント
manish sharma
manish sharma 2012 年 7 月 12 日
Thanks John!

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

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by