To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / _FullBNT / BNT / CPDs / @tabular_kernel / get_field.m @ 8:b5b38998ef3b
History | View | Annotate | Download (282 Bytes)
| 1 |
function val = get_params_kernel(K, name) |
|---|---|
| 2 |
% GET_PARAMS_KERNEL Accessor function for a field (tabular_kernel) |
| 3 |
% val = get_params_kernel(K, name) |
| 4 |
% |
| 5 |
% e.g., get_params_kernel(K, 'table') |
| 6 |
|
| 7 |
switch name |
| 8 |
case 'table', val = K.table; |
| 9 |
otherwise, |
| 10 |
error(['invalid field name ' name]); |
| 11 |
end |