17 lines
516 B
Mathematica
17 lines
516 B
Mathematica
|
|
%Test tracking only
|
||
|
|
clear; close all; clc;
|
||
|
|
|
||
|
|
format ('compact');
|
||
|
|
format ('long', 'g');
|
||
|
|
|
||
|
|
%--- Include folders with functions ---------------------------------------
|
||
|
|
addpath ..\include % The software receiver functions
|
||
|
|
addpath ..\geoFunctions % Position calculation related functions
|
||
|
|
addpath ..
|
||
|
|
|
||
|
|
load trackingResults.mat;
|
||
|
|
settings=initSettings();
|
||
|
|
|
||
|
|
navSolutions = postNavigation(trackResults, settings);
|
||
|
|
%plot(navSolutions.latitude,navSolutions.longitude,'o');
|
||
|
|
plotNavigation(navSolutions, settings);
|