Mercurial > hg > scatter_reeval
view reeval/experiments/run_experiment.m @ 4:a1f6a08f624c tip
Completed version 0.0.2
author | Francisco Rodriguez Algarra <f.rodriguezalgarra@qmul.ac.uk> |
---|---|
date | Tue, 03 Nov 2015 21:24:41 +0000 |
parents | b1cd83874633 |
children |
line wrap: on
line source
function [] = run_experiment(experiment, condition, results_dir) if nargin < 2 condition = cellstr(['none '; 'fault']); end if nargin < 3 global results_dir end db = compute_features(experiment); db.results = perform_classification(experiment, db, condition); store_results(experiment, db, results_dir); end