getrgpo.m
来自「信号与信息处理-matlab信号处理工具箱源程序集合」· M 代码 · 共 18 行
M
18 行
function offset=getrgpo(time,rgpoMatrix)% GETRGPO Gets the false target offset at a particular time.% % offset=getrgpo(time,rgpoMatrix)% % offset = offset of false target from real target% time = time at which to find offset% rgpoMatrix = matrix formed from rgpo(t,dr)% % Author: Jason Moyle% Date: May 2008% % See also RGPOt=rgpoMatrix(1,:)dr=rgpoMatrix(2,:)offset=interp1(t,dr,time)end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?