How to set constraints of griddata results are all non-negative?

8 ビュー (過去 30 日間)
Annie
Annie 2019 年 8 月 18 日
回答済み: Walter Roberson 2019 年 8 月 18 日
I use the griddata function in matlab, but after the interpolation, the value of some points is less than 0. Is there any way to control the range of interpolation results?
That is to say, the results I want are all non-negative, but the results obtained after interpolation are somewhat less than 0.
Is there any way to set constraints?
  1 件のコメント
Annie
Annie 2019 年 8 月 18 日
I use griddata to interpolate the existing data (61) (the interpolation result is 100), my data is percent, but the result of the interpolation is <0, there are also >100, how to control, so that the interpolation result is Between 0-100?

サインインしてコメントする。

採用された回答

Stephen23
Stephen23 2019 年 8 月 18 日
編集済み: Stephen23 2019 年 8 月 18 日
"Is there any way to control the range of interpolation results?"
You could simply adjust the output data yourself:
A = max(0,min(100,A))
Depending on your data values you might be able to change the input data values and/or the interpolation method, e.g. if you used a spline or similar, then you might be able to change for linear interpolation.

その他の回答 (1 件)

Walter Roberson
Walter Roberson 2019 年 8 月 18 日
The griddata and interp1 and interp2 methods that do interpolation (so everything except nearest or next or prev) are all subject to "ringing" when there is a sharp transition 0 to 0 to positive, because none of them can handle sharp corners. The piecewise ones such as spline are best at such transitions, but do not always detect the transition at exactly the right boundaries.

カテゴリ

Help Center および File ExchangeInterpolation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by