mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-01-30 10:54:50 +00:00
10 lines
235 B
Mathematica
10 lines
235 B
Mathematica
|
% compare pseudoranges
|
||
|
|
||
|
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')
|