Mercurial > hg > scatter_reeval
annotate reeval/classification/store_results.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 |
rev | line source |
---|---|
f@2 | 1 function [] = store_results(experiment, db, results_dir) |
f@2 | 2 |
f@2 | 3 if nargin < 3 |
f@2 | 4 global results_dir; |
f@2 | 5 end |
f@2 | 6 |
f@2 | 7 [s, mess, messid] = mkdir(results_dir); |
f@2 | 8 if(s ~= 1) |
f@2 | 9 error('Create results folder failed'); |
f@2 | 10 end |
f@2 | 11 |
f@2 | 12 save([results_dir, experiment, '.mat'], 'db'); |
f@2 | 13 |
f@2 | 14 end |