annotate toolboxes/FullBNT-1.0.7/bnt/CPDs/@tabular_kernel/get_field.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
rev   line source
wolffd@0 1 function val = get_params_kernel(K, name)
wolffd@0 2 % GET_PARAMS_KERNEL Accessor function for a field (tabular_kernel)
wolffd@0 3 % val = get_params_kernel(K, name)
wolffd@0 4 %
wolffd@0 5 % e.g., get_params_kernel(K, 'table')
wolffd@0 6
wolffd@0 7 switch name
wolffd@0 8 case 'table', val = K.table;
wolffd@0 9 otherwise,
wolffd@0 10 error(['invalid field name ' name]);
wolffd@0 11 end