CHECK_T.M
上传用户:sfyaiting
上传日期:2009-10-25
资源大小:320k
文件大小:0k
源码类别:

GPS编程

开发平台:

Matlab

  1. function tt = check_t(t);
  2. % CHECK_T repairs over- and underflow of GPS time
  3. %  Written by Kai Borre
  4. %  April 1, 1996
  5.  half_week = 302400;
  6.  tt = t;
  7.  if t >  half_week, tt = t-2*half_week; end
  8.  if t < -half_week, tt = t+2*half_week; end
  9. %%%%%%% end check_t.m  %%%%%%%%%%%%%%%%%