資源簡介
原始數據文件直接用程序處理即可,可以得到很好的結捕獲跟蹤同步結果

代碼片段和文件信息
function?acqResults?=?acquisition(longSignal?settings)
%Function?performs?cold?start?acquisition?on?the?collected?“data“.?It
%searches?for?GPS?signals?of?all?satellites?which?are?listed?in?field
%“acqSatelliteList“?in?the?settings?structure.?Function?saves?code?phase
%and?frequency?of?the?detected?signals?in?the?“acqResults“?structure.
%
%acqResults?=?acquisition(longSignal?settings)
%
%???Inputs:
%???????longSignal????-?11?ms?of?raw?signal?from?the?front-end?
%???????settings??????-?Receiver?settings.?Provides?information?about
%???????????????????????sampling?and?intermediate?frequencies?and?other
%???????????????????????parameters?including?the?list?of?the?satellites?to
%???????????????????????be?acquired.
%???Outputs:
%???????acqResults????-?Function?saves?code?phases?and?frequencies?of?the?
%???????????????????????detected?signals?in?the?“acqResults“?structure.?The
%???????????????????????field?“carrFreq“?is?set?to?0?if?the?signal?is?not
%???????????????????????detected?for?the?given?PRN?number.?
?
%--------------------------------------------------------------------------
%???????????????????????????SoftGNSS?v3.0
%?
%?Copyright?(C)?Darius?Plausinaitis?and?Dennis?M.?Akos
%?Written?by?Darius?Plausinaitis?and?Dennis?M.?Akos
%?based?on?Peter?Rinder?and?Nicolaj?Bertelsen
%--------------------------------------------------------------------------
%This?program?is?free?software;?you?can?redistribute?it?and/or
%modify?it?under?the?terms?of?the?GNU?General?Public?License
%as?published?by?the?Free?Software?Foundation;?either?version?2
%of?the?License?or?(at?your?option)?any?later?version.
%
%This?program?is?distributed?in?the?hope?that?it?will?be?useful
%but?WITHOUT?ANY?WARRANTY;?without?even?the?implied?warranty?of
%MERCHANTABILITY?or?FITNESS?FOR?A?PARTICULAR?PURPOSE.??See?the
%GNU?General?Public?License?for?more?details.
%
%You?should?have?received?a?copy?of?the?GNU?General?Public?License
%along?with?this?program;?if?not?write?to?the?Free?Software
%Foundation?Inc.?51?Franklin?Street?Fifth?Floor?Boston?MA??02110-1301
%USA.
%--------------------------------------------------------------------------
%CVS?record:
%$Id:?acquisition.mv?1.1.2.12?2006/08/14?12:08:03?dpl?Exp?$
%%?Initialization?=========================================================
%?Find?number?of?samples?per?spreading?code
samplesPerCode?=?round(settings.samplingFreq?/?...
????????????????????????(settings.codeFreqBasis?/?settings.codeLength));
%?Create?two?1msec?vectors?of?data?to?correlate?with?and?one?with?zero?DC
signal1?=?longSignal(1?:?samplesPerCode);
signal2?=?longSignal(samplesPerCode+1?:?2*samplesPerCode);
signal0DC?=?longSignal?-?mean(longSignal);???%%Problems?here....
%?Find?sampling?period
ts?=?1?/?settings.samplingFreq;
%?Find?phase?points?of?the?local?carrier?wave?
phasePoints?=?(0?:?(samplesPerCode-1))?*?2?*?pi?*?ts;
%?Number?of?the?frequency?bins?for?the?given?acquisition?band?(500Hz?s
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????235??2010-02-11?20:37??軟件定義的GPS和伽利略接收機\新建?文本文檔.txt
?????文件??????34612??2010-02-11?20:35??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles.zip
?????文件??????10197??2008-03-24?16:01??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\acquisition.m
?????文件???????3419??2007-09-04?13:23??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\geoFunctions\dms2mat.m
?????文件???????4218??2007-09-04?13:22??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\geoFunctions\mat2dms.m
?????文件???????1249??2007-09-04?13:22??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\geoFunctions\roundn.m
?????文件???????3367??2008-03-24?02:07??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\include\preRun.m
?????文件???????5127??2008-07-26?13:42??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\initSettings.m
?????文件???????2233??2008-03-24?01:48??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\plotAcquisition.m
?????文件???????6306??2008-03-24?01:50??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\postProcessing.m
?????文件???????6109??2008-04-14?00:42??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\probeData.m
?????文件??????18557??2008-07-26?12:30??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\SDRcodeUpdate.pdf
?????文件??????13822??2008-03-24?01:50??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\tracking.m
?????目錄??????????0??2008-05-05?23:30??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\geoFunctions
?????目錄??????????0??2008-05-05?23:29??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles\include
?????目錄??????????0??2008-07-26?12:30??軟件定義的GPS和伽利略接收機\UpdatedAddedFiles
?????目錄??????????0??2010-02-11?20:37??軟件定義的GPS和伽利略接收機
-----------?---------??----------?-----??----
???????????????109451????????????????????17
- 上一篇:龍貝格算法MATLAB程序
- 下一篇:matlab擬合程序
評論
共有 條評論