blob: ba233db9fbeda1f84aa42a93040988fa21d8bac4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
function val = get_field(CPD, name)
% GET_PARAMS Get the parameters (fields) for a tabular_CPD object
% val = get_params(CPD, name)
%
% The following fields can be accessed
%
% cpt, counts
%
% e.g., CPT = get_params(CPD, 'cpt')
switch name
case 'cpt', val = CPD.CPT;
case 'counts', val = CPD.counts;
otherwise,
error(['invalid argument name ' name]);
end
|