mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-06-26 15:12:51 +00:00
MOD: improve matlab plot
This commit is contained in:
parent
b2d5705a89
commit
5a7b2e8184
@ -98,10 +98,10 @@ sgtitle('velocities')
|
|||||||
|
|
||||||
VTL_POS=figure('Name','VTL UTM COORD CENTERED IN 1^{ST} POSITION');
|
VTL_POS=figure('Name','VTL UTM COORD CENTERED IN 1^{ST} POSITION');
|
||||||
subplot(2,2,1);
|
subplot(2,2,1);
|
||||||
plot(navSolution.X,'.');
|
plot(navSolution.RX_time-navSolution.RX_time(1),navSolution.X,'.');
|
||||||
hold on;grid on
|
hold on;grid on
|
||||||
plot(corr_kf_state(1,3:end))
|
plot(navSolution.RX_time(3:end)-navSolution.RX_time(1),corr_kf_state(1,3:end))
|
||||||
% plot(refSolution.X,'.')
|
plot(refSolution.SIM_time/1000-TTFF_sec,refSolution.X,'.')
|
||||||
ylabel('X (m)')
|
ylabel('X (m)')
|
||||||
xlabel('time U.A.')
|
xlabel('time U.A.')
|
||||||
% ylim([-200 800])
|
% ylim([-200 800])
|
||||||
@ -109,10 +109,10 @@ title('Subplot 1: X ')
|
|||||||
legend ('raw navSolution','raw kf state','kferr','Location','eastoutside')
|
legend ('raw navSolution','raw kf state','kferr','Location','eastoutside')
|
||||||
|
|
||||||
subplot(2,2,2);
|
subplot(2,2,2);
|
||||||
plot(navSolution.Y,'.');
|
plot(navSolution.RX_time-navSolution.RX_time(1),navSolution.Y,'.');
|
||||||
hold on;grid on
|
hold on;grid on
|
||||||
plot(corr_kf_state(2,3:end))
|
plot(navSolution.RX_time(3:end)-navSolution.RX_time(1),corr_kf_state(2,3:end))
|
||||||
% plot(refSolution.Y,'.')
|
plot(refSolution.SIM_time/1000-TTFF_sec,refSolution.Y,'.')
|
||||||
ylabel('Y (m)')
|
ylabel('Y (m)')
|
||||||
xlabel('time U.A.')
|
xlabel('time U.A.')
|
||||||
% ylim([-200 50])
|
% ylim([-200 50])
|
||||||
@ -120,10 +120,10 @@ title('Subplot 1: Y ')
|
|||||||
legend ('raw navSolution','raw kf state','kferr','Location','eastoutside')
|
legend ('raw navSolution','raw kf state','kferr','Location','eastoutside')
|
||||||
|
|
||||||
subplot(2,2,3);
|
subplot(2,2,3);
|
||||||
plot(navSolution.Z,'.');
|
plot(navSolution.RX_time-navSolution.RX_time(1),navSolution.Z,'.');
|
||||||
hold on;grid on
|
hold on;grid on
|
||||||
plot(corr_kf_state(3,3:end))
|
plot(navSolution.RX_time(3:end)-navSolution.RX_time(1),corr_kf_state(3,3:end))
|
||||||
% plot(refSolution.Z,'.')
|
plot(refSolution.SIM_time/1000-TTFF_sec,refSolution.Z,'.')
|
||||||
ylabel('Z (m)')
|
ylabel('Z (m)')
|
||||||
xlabel('time U.A.')
|
xlabel('time U.A.')
|
||||||
% ylim([-350 50])
|
% ylim([-350 50])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user