forked from TASBE/TASBEFlowAnalytics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplot_sample_sets.m
23 lines (20 loc) · 864 Bytes
/
plot_sample_sets.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
% Copyright (C) 2010-2017, Raytheon BBN Technologies and contributors listed
% in the AUTHORS file in TASBE analytics package distribution's top directory.
%
% This file is part of the TASBE analytics package, and is distributed
% under the terms of the GNU General Public License, with a linking
% exception, as described in the file LICENSE in the TASBE analytics
% package distribution's top directory.
function plot_sample_sets(batch_description,results,OSbin)
%fprintf('Outputting CSV data...\n');
%sample_set_to_csv();
batch_size = size(batch_description,1);
fprintf('Outputting histograms');
for i=1:batch_size,
condition_name = batch_description{i,1};
OStmp = OSbin; OStmp.StemName = [OStmp.StemName '-' condition_name];
sampleresults = results{i,2};
plot_sample_histograms(sampleresults,OStmp);
fprintf('.');
end
fprintf('\n');