Mercurial > hg > camir-aes2014
annotate toolboxes/FullBNT-1.0.7/bnt/potentials/@dpot/get_fields.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(pot, name) |
wolffd@0 | 2 % GET_PARAMS Accessor function for a field (dpot) |
wolffd@0 | 3 % val = get_params(pot, name) |
wolffd@0 | 4 % |
wolffd@0 | 5 % e.g., get_params(pot, 'table') or 'domain' |
wolffd@0 | 6 |
wolffd@0 | 7 switch name |
wolffd@0 | 8 case 'table', val = pot.T; |
wolffd@0 | 9 case 'domain', val = pot.domain; |
wolffd@0 | 10 otherwise, |
wolffd@0 | 11 error(['invalid field name ' name]); |
wolffd@0 | 12 end |
wolffd@0 | 13 |