How to retain duplicate while using ScatteredInterpolant

9 次查看(过去 30 天)
I want to retain duplicates when using ScatteredInterpolant because I am getting warning:"Warning: Duplicate data points have been detected and removed - corresponding values have been averaged. "

采纳的回答

John D'Errico
John D'Errico 2017-9-2
编辑:John D'Errico 2017-9-2
1-d is sufficient to explain here.
x = [1 2 3 3 4 5];
y = [1 2 3 4 5 6];
There is a replicated x, with two distinct values of y. Exactly what do you think "retaining the duplicate" means here? What value of y should be interpolated when x==3?
A property of interpolation is that for any given x, if one of the original data points is interpolated, you should get out exactly the same value as went in. (At least, exact to within floating point trash.)
  2 个评论
Aristo
Aristo 2017-9-2
Let me explain, if you have a array
x= [1,2,3,1,1,4,5,6,1,7]
then , if I use ScatterInterpolant , x becomes:
x=[1,2,3,4,,5,6,7]
but I need x to be:
x= [1,2,3,1,1,4,5,6,1,7]
Walter Roberson
Walter Roberson 2017-9-2
You have not answered the question about which value of y should be interpolated.

请先登录,再进行评论。

更多回答(1 个)

Francesc Purroy
Francesc Purroy 2018-11-12
In some cases you can have a set of x and y data where the values of x and/or y are repeated as Aristo was showing. A simple way around is to add some noise to your data as with randn then ScatterInterpolant does not consider the values to be equal and it works for me.

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by