CHECK_T.M
资源名称:easy.zip [点击查看]
上传用户:sfyaiting
上传日期:2009-10-25
资源大小:320k
文件大小:0k
源码类别:
GPS编程
开发平台:
Matlab
- function tt = check_t(t);
- % CHECK_T repairs over- and underflow of GPS time
- % Written by Kai Borre
- % April 1, 1996
- half_week = 302400;
- tt = t;
- if t > half_week, tt = t-2*half_week; end
- if t < -half_week, tt = t+2*half_week; end
- %%%%%%% end check_t.m %%%%%%%%%%%%%%%%%