IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
log_ovrcurves.m
Go to the documentation of this file.
1 %>@brief Stores set of grades as a matrix
2 %>
3 %> Although it is called log_*ovr*curves, the name is purely etymological. This log is generic enough to store any set of grades curves
4 classdef log_ovrcurves < irlog
5  properties
6  %> (nf)x(number of grades) matrix
7  gradess;
8  %> Legends: meaning of each row within gradess
9  legends = {};
10 
11  %> Extracted from data
12  fea_x;
13  %> Extracted from data
14  xname = '';
15  %> Extracted from data
16  xunit;
17  %> Describes what the "grades" represent
18  yname;
19  %> Describes what the "grades" represent
20  yunit;
21 
22  %> Index of reference class.
23  idx_ref = 1;
24  end;
25 
26  properties
27  nf;
28  end;
29 
30  methods
31  function o = log_ovrcurves()
32  o.flag_ui = 0;
33  end;
34 
35  function n = get.nf(o)
36  n = numel(o.fea_x);
37  end;
38 
39  end;
40 end
Stores set of grades as a matrix.
Definition: log_ovrcurves.m:4
Analysis Session (AS) base class.
Definition: as.m:6
Log base class.
Definition: irlog.m:5