Matlab插值切换因变量
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
interp1(Progress,Time,TimesWanted)
,其中TimesWanted
是包含所需时间的新向量。例如:给我:
这是通过插值获得的
TimesWanted
的进度。Use
interp1(Progress,Time,TimesWanted)
whereTimesWanted
is a new vector with the times that you want. For example:gives me:
which is the progress at
TimesWanted
obtained by interpolation.