Skip to content
Snippets Groups Projects
Select Git revision
  • 28a4634136eb1bc082e0feaba4f4a78fc177d15e
  • master default protected
  • v1.0
3 results

main_cycling.m

Blame
  • main_cycling.m 554 B
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    % Script for single experiment with cycling data 
    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
    
    
    %% Load data
    disp('Loads data')
    load('cycling_input_data');
    
    %% Load filter settings
    disp('Loads settings')
    settings=get_settings_cycling();
    settings.P_treshold=2.5;
    
    %% Run the GNSS-aided INS
    disp('Runs the GNSS-aided INS')
    out_data=GPSaidedINS_cycling(in_data,settings);
    
    %% Plot the data 
    disp('Plot data')
    plot_single_trace