Mercurial > hg > camir-aes2014
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e9a9cd732c1e |
---|---|
1 function val = get_params(pot, name) | |
2 % GET_PARAMS Accessor function for a field (dpot) | |
3 % val = get_params(pot, name) | |
4 % | |
5 % e.g., get_params(pot, 'table') or 'domain' | |
6 | |
7 switch name | |
8 case 'table', val = pot.T; | |
9 case 'domain', val = pot.domain; | |
10 otherwise, | |
11 error(['invalid field name ' name]); | |
12 end | |
13 |