source: MML/trunk/mml/common2family.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: 599 bytes
Line 
1function [FamilyName, DeviceList, ErrorFlag] = common2family(varargin)
2%COMMON2FAMILY - Convert a common name to a family name
3%  [Family, DeviceList, ErrorFlag] = common2family(CommonNames)
4%
5%  INPUTS
6%  1. CommonNames - List of common names (string, matrix, cell array)
7%
8%  OUTPUTS
9%  1. Family - Family Name
10%              If the common name cannot be found a blank string is returned
11%  2. DeviceList - Device list
12%  3. ErrorFlag - Number of errors found
13%
14%  See also common2dev, common2channel
15%
16%  Written by Greg Portmann
17
18
19[DeviceList, FamilyName, ErrorFlag] = common2dev(varargin{:});
Note: See TracBrowser for help on using the repository browser.