Scattered Interpolant in matlab

28 ビュー (過去 30 日間)
SGK
SGK 2024 年 2 月 14 日
編集済み: Catalytic 2024 年 2 月 18 日
I have matrices xs,ys,z. All the matrices are stored in a workspace and has size 41x50.
I would like to interpolate and store them in 2D lookup table. is it possible to use spline/cubic method in scatteredinterpolant command?
I used in the code but getting these errors.

採用された回答

Star Strider
Star Strider 2024 年 2 月 14 日
The interpolation Method options are 'linear', 'nearest' and 'natural' (natural neighbor interpolation, giving no details that I can find, only an example).
The ExtrapolationMethod options are 'linear' 'nearest' or 'none'.
  3 件のコメント
SGK
SGK 2024 年 2 月 18 日
編集済み: SGK 2024 年 2 月 18 日
out of these methods which can gives a good interpolation results?
I have seen that cubic and spline methods are very reliable since I cant able to use them in scatteredinterpolant what other methods can I use to interpolate these matrices?
Star Strider
Star Strider 2024 年 2 月 18 日
I always experiment with all of them tto see which gives the best result, and again it depends on what I want to do (interpolate in a region, or draw a line on the surface, for example, because scatteredInterpolant computes lines well).
With respect to extrapolation, I again experiment, although in that instance, usually end up using 'nearest'.

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

その他の回答 (2 件)

Catalytic
Catalytic 2024 年 2 月 18 日
編集済み: Catalytic 2024 年 2 月 18 日
No. There is no such thing as spline interpolation or extrapolation when you are dealing with scattered data. It is inherently a gridded data thing.

the cyclist
the cyclist 2024 年 2 月 14 日
編集済み: the cyclist 2024 年 2 月 14 日
No, according to the documentation for scatteredInterpolant, the available extrapolation methods are 'nearest', 'linear', or 'none'.

カテゴリ

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