SoftGNSS/GNSS_SDR_IQ/test/Test_Tracking.m
2025-10-22 16:08:12 +07:00

17 lines
516 B
Matlab

%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);