What data points does interp1 use for linear interpolation?

3 次查看(过去 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.

回答(1 个)

dpb
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 个评论
Leslie
Leslie 2019-7-1
@dpb, Thank you for the quick answer. However, I know that interp1 "does linear interpolation between points unless you use 'nearest'|'next''|'previous' ". I want to be clear on whether or not it uses only the nearest point on either side of the query point to do that interpolation.
dpb
dpb 2019-7-1
编辑:dpb 2019-7-1
What else would/could it use for linear interpolation?
You can always try it out and see if you don't believe...
Or, of course, unless you extrapolate...

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Mathematics 的更多信息

产品


版本

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by