interpolation of data 2 vectors
17 次查看(过去 30 天)
显示 更早的评论
hi i have trouble interpolate
Y=1945 1946 1947 1948 1949 1950 1951 1952 1953
L=6937 6976 6987 7015 9999 9999 6921 6958 6936
how I can interpolate these values of the year 1949 and 1950? and replace it in the L values. I know is a "for" but i dont know how implement it
0 个评论
采纳的回答
Walter Roberson
2012-5-15
Remove the points with bad data . interp1() the points back in
interp1(Y2, L2, [1949 1950])
2 个评论
Walter Roberson
2012-5-15
is_bad = (L == 9999);
Lfixed = L;
Lfixed(is_bad) = interp1( Y(~is_bad), L(~is_bad), Y(is_bad) );
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!