什么是在matlab中查询插值的公式

时间:2017-11-24 13:02:30

标签: matlab linear-interpolation

我正在尝试理解<div class="title-card"> <div class="background-overlay"> <img src="https://i.ytimg.com/vi/3RMr6m1B-qM/maxresdefault.jpg" class="background"> </div> <div class="please-work"> <div class="title-overlay"> <div class="title"> Hello there, and welcome! This site is still unfinished but feel free to look around. </div> </div> </div> </div>在matlab中所做的逻辑并在c#中编写逻辑。

以下代码在matlab中。

Querying the Interpolant

现在执行以下语句时,

D = griddedInterpolant(A,B,'linear');

where A=[1;2;3;4;5] B=[6;7;8;9;10]

T=[1;2;3;4;5]

我不明白产生这个结果的公式是什么。 我找到了一个如下公式,

D(T)

this is the result I am getting.

ans = [6;7;8;9;10]

Linear Interpolation Calculation

我不明白我们如何使用这个公式计算我用的矢量矩阵。

有人可以帮助我,我们使用的公式是什么以及如何使用。

0 个答案:

没有答案