Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
GET_EPH.M
Package: easy.zip [view]
Upload User: sfyaiting
Upload Date: 2009-10-25
Package Size: 320k
Code Size: 1k
Category:
GPS develop
Development Platform:
Matlab
- function eph = get_eph(ephemeridesfile)
- %GET_EPH The ephemerides contained in ephemeridesfile
- % are reshaped into a matrix with 21 rows and
- % as many columns as there are ephemerides.
- % Typical call eph = get_eph('rinex_n.dat')
- %Kai Borre 10-10-96
- %Copyright (c) by Kai Borre
- %$Revision: 1.0 $ $Date: 1997/09/26 $
- fide = fopen(ephemeridesfile);
- [eph, count] = fread(fide, Inf, 'double');
- noeph = count/21;
- eph = reshape(eph, 21, noeph);
- %%%%%%%% end get_eph.m %%%%%%%%%%%%%%%%%%%%%