Matlab插值切换因变量

发布于 2024-11-10 13:04:12 字数 123 浏览 5 评论 0原文

我有一个 Nx2 矩阵,其中列为“时间”和“进度”。

进度是积分,时间是每个进度单位对应的实数值。

我想反转依赖性并使“时间”积分并在每个单位时间步输出分数“进度”。

这怎么能做到呢?

I have an Nx2 matrix with columns as 'Time' and 'Progress'.

Progress is integral and Time is a real value corresponding to each progress unit.

I want to reverse the dependency and make 'Time' integral and output the fractional 'Progress' at every unit time step.

How can this be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱*していゐ 2024-11-17 13:04:12

使用 interp1(Progress,Time,TimesWanted),其中 TimesWanted 是包含所需时间的新向量。例如:

Progress=1:10;       %just a guess of the sort of progress you might have
Time=Progress*5.5;   %the resulting times (say 5.5s per step)
TimesWanted=10:5:50; %the times we want
interp1(Time,Progress,TimesWanted)

给我:

ans =
1.8182    2.7273    3.6364    4.5455    5.4545    6.3636    7.2727    8.1818    9.0909

这是通过插值获得的 TimesWanted 的进度。

Use interp1(Progress,Time,TimesWanted) where TimesWanted is a new vector with the times that you want. For example:

Progress=1:10;       %just a guess of the sort of progress you might have
Time=Progress*5.5;   %the resulting times (say 5.5s per step)
TimesWanted=10:5:50; %the times we want
interp1(Time,Progress,TimesWanted)

gives me:

ans =
1.8182    2.7273    3.6364    4.5455    5.4545    6.3636    7.2727    8.1818    9.0909

which is the progress at TimesWanted obtained by interpolation.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文