Interpolating various dimension matrix

1 回表示 (過去 30 日間)
Ali Sotoudeh
Ali Sotoudeh 2021 年 12 月 27 日
コメント済み: Ali Sotoudeh 2021 年 12 月 28 日
Hello I want to interpolating between variables as below: x=matrix with 2×54 dimension and y=matrix with 1×54 dimension and x_q=matrix or vector with 2×1 dimension. Is it possible to use interp1 or interp2 functions?

採用された回答

Torsten
Torsten 2021 年 12 月 27 日
F = scatteredInterpolant(x(1,1:54),x(2,1:54),y(1,1:54));
y_q = F(x_q(1),x_q(2))
  1 件のコメント
Ali Sotoudeh
Ali Sotoudeh 2021 年 12 月 28 日
Thank you dear friend. problem solved with your suggestion. But the inputs must be specified in column-vector format.

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

その他の回答 (1 件)

Sulaymon Eshkabilov
Sulaymon Eshkabilov 2021 年 12 月 27 日
If understood your question correctly, in this case - you're trying to interpolate with 1-by-54 of y using 2-by-54 of x. if this is the case, you'd need to have matched sizes for x and y. Otherwise, it does not make quite much of a sense.
  1 件のコメント
Ali Sotoudeh
Ali Sotoudeh 2021 年 12 月 28 日

Thank you dear friend. problem solved.

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

カテゴリ

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

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by