source: MML/trunk/applications/database/mym/dbm/@FilterDB/itemSearch.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 10 years ago

Initial import--MML version from SOLEIL@2013

File size: 240 bytes
Line 
1function [id, item] =  itemSearch(a_f, a_tag, varargin)
2
3[id, item] = itemSearch(a_f.BasicDB, a_tag, varargin{:});
4if ~isempty(id)
5  item = char(item(:)');
6  if item(1)=='@'
7    item = eval(item);
8  else
9    item = str2func(item);
10  end
11end
Note: See TracBrowser for help on using the repository browser.