Added matlab code samples.

All of these code samples currently are mis-identified in my repositories. I'm
donating them to the cause.
This commit is contained in:
Jason Moore
2013-01-30 13:12:45 -08:00
parent 121f096173
commit 9bb230d7c8
17 changed files with 2121 additions and 0 deletions

13
samples/Matlab/ieee.m Normal file
View File

@@ -0,0 +1,13 @@
% 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)