Mercurial > hg > scatter_reeval
comparison reeval/experiments/run_experiment.m @ 2:b1cd83874633
Major structural revision. Modular organization of functionalities
author | Francisco Rodriguez Algarra <f.rodriguezalgarra@qmul.ac.uk> |
---|---|
date | Wed, 28 Oct 2015 16:15:47 +0000 |
parents | |
children | a1f6a08f624c |
comparison
equal
deleted
inserted
replaced
1:9a37f107f089 | 2:b1cd83874633 |
---|---|
1 function [] = run_experiment(experiment, condition, results_dir) | |
2 | |
3 if nargin < 2 | |
4 condition = cellstr(['none '; 'fault']); | |
5 end | |
6 if nargin < 3 | |
7 global results_dir | |
8 end | |
9 | |
10 db = compute_features(experiment); | |
11 | |
12 db.results = perform_classification(experiment, db, condition); | |
13 | |
14 store_results(experiment, db, results_dir); | |
15 | |
16 end |