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 'cpt_orig', val = CPD.CPT_orig; case 'counts', val = CPD.counts; otherwise, error(['invalid argument name ' name]); end