IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
log_grades.m
Go to the documentation of this file.
1 %>@brief Generated by a @ref as_grades object, carries a "grades" vector; usually
2 classdef log_grades < irlog
3  properties
4  %> Grades vector
5  grades;
6 
7  %> Extracted from data
8  fea_x;
9  %> Extracted from data
10  xname = '';
11  %> Extracted from data
12  xunit;
13  %> Describes what the "grades" represent
14  yname;
15  %> Describes what the "grades" represent
16  yunit;
17  end;
18 
19  properties
20  nf;
21  end;
22 
23  methods
24  function o = log_grades()
25  o.flag_ui = 0;
26  end;
27 
28  function n = get.nf(o)
29  n = numel(o.fea_x);
30  end;
31 
32 % function o = draw(.....)
33 % function o = draw(o, data_hint, flag_mark)
34 % if ~exist('data_hint', 'var')
35 % data_hint = [];
36 % end;
37 %
38 % o.draw_grades(data_hint, 1);
39 % o.draw_markers();
40 % o.draw_finish();
41 % end;
42 %
43 
44 
45 
46  end;
47 end
Analysis Session that outputs a log_grades.
Definition: as_grades.m:2
Generated by a as_grades object, carries a "grades" vector; usually.
Definition: log_grades.m:2
Log base class.
Definition: irlog.m:5