mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-10-29 09:40:21 +00:00
All of these code samples currently are mis-identified in my repositories. I'm donating them to the cause.
14 lines
434 B
Matlab
14 lines
434 B
Matlab
% This script loads in the data used for the IEEE paper and creates the plots.
|
|
clc; close all;
|
|
|
|
bikes = {'Benchmark', 'Browserins', 'Browser', 'Pista', ...
|
|
'Fisher', 'Yellow', 'Yellowrev'};
|
|
|
|
data = load_bikes(bikes, 'Steer');
|
|
|
|
rollData = generate_data('Benchmark', 5.0, ...
|
|
'input', 'Roll', ...
|
|
'gains', [1, 55, 3.76, 0.413, 0.076]);
|
|
|
|
create_ieee_paper_plots(data, rollData)
|