What data points does interp1 use for linear interpolation?
5 次查看(过去 30 天)
显示 更早的评论
What original data points does interp1 use for linear interpolation when there are multiple original data points between the query points? Only the orginal locations nearest the query points? All the original locations between query points?
BACKGROUND: I have data collected by instruments attached to a weather balloon. Some of these soundings have roughly (but not exactly) 5 meter vertical resolution. Others have very irregular resolutions, e.g the difference between vertical locations ranges from a few to 700 meters and these differences are not a simple function of altitude. Both types of soundings need to be interpolated to a 50m vertical grid. I want to do it with linear interpolation, for compatability with a large body of previous work.
0 个评论
回答(1 个)
dpb
2019-7-1
编辑:dpb
2019-7-1
inter1 does linear interpolation between points unless you use 'nearest'|'next''|'previous' for the method. It also requires the x-interpolating vector be unique so there is no ambiguity of what points would be used.
If your soundings do have duplicated altitudes (guess probably not likely), then you'll have to differentiate between them by at least eps(elev) to use interp1
3 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!