-
Notifications
You must be signed in to change notification settings - Fork 79
/
Plot_Analysis.m
29 lines (25 loc) · 1.04 KB
/
Plot_Analysis.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
%--------------------------------------------------------------------------
%
% %%%%% %%%%% % % % % %
% % % %% %
% % %%% % % % % %%% % %
% % % % % %%
% %%%%% %%%%% % % % % %
%
%
%--------------------------------------------------------------------------
% GINav v0.1.0
%
% Copyright (C) 2020-2025, by Kai Chen, All rights reserved.
%--------------------------------------------------------------------------
% This script is used to plot and analyze results.It should be noted that
% all file formats must follow GINav's format requirements. For more
% details, please refer to the GINav user manual.
%--------------------------------------------------------------------------
clc
clear all %#ok
close all
addpath(genpath(pwd))
global_variable;
GINavPlot;
%--------------------------------------------------------------------------