2018-03-30 08:33:11 +00:00
|
|
|
% -------------------------------------------------------------------------
|
|
|
|
%
|
2020-12-30 12:35:06 +00:00
|
|
|
% GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
2018-03-30 08:33:11 +00:00
|
|
|
% This file is part of GNSS-SDR.
|
2020-12-30 12:35:06 +00:00
|
|
|
%
|
|
|
|
% Copyright (C) 2010-2019 (see AUTHORS file for a list of contributors)
|
2020-02-08 00:20:02 +00:00
|
|
|
% SPDX-License-Identifier: GPL-3.0-or-later
|
2018-03-30 08:33:11 +00:00
|
|
|
%
|
|
|
|
% -------------------------------------------------------------------------
|
|
|
|
%
|
|
|
|
|
|
|
|
% compare pseudoranges
|
2012-04-11 10:43:35 +00:00
|
|
|
|
|
|
|
close all;
|
|
|
|
% GNSS SDR
|
|
|
|
plot(GNSS_PVT_raw.tx_time(1,1:300).'-200/settings.samplingFreq,GNSS_PVT_raw.Pseudorange_m(1,1:300).')
|
|
|
|
|
|
|
|
% MATLAB
|
|
|
|
hold on;
|
|
|
|
plot(navSolutions.transmitTime,navSolutions.channel.rawP(1,:),'g')
|