Help interpolating time series
古いコメントを表示
Hi,
I have a time series that measures waves every 3hrs and would like to interpolate it so it measures every hour. I've been trying to do this using interp1 but have been unsuccesful. Please help.
Cheers
回答 (1 件)
Azzi Abdelmalek
2013 年 2 月 5 日
編集済み: Azzi Abdelmalek
2013 年 2 月 5 日
x=[0 1 2 4]
y=sin(x)
xi=[0 0.5 1 1.5 2 2.5 3 3.5 4]
method='spline'
yi=interp1(x,y,xi,method)
カテゴリ
ヘルプ センター および File Exchange で Interpolation についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!