source: MML/trunk/mml/minsp.m @ 4

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

Initial import--MML version from SOLEIL@2013

File size: 731 bytes
Line 
1function [Data, ErrorFlag] = minsp(varargin)
2%MINSP - Minimum value of the setpoint
3%
4%  FamilyName/DeviceList Method
5%  SPmin = maxsp(Family, DeviceList)
6%  SPmin = maxsp(DataStructure)
7%
8%  ChannelName Method
9%  SPmin = maxsp(ChannelNames)
10%
11%  INPUTS
12%  1. Family - Family Name
13%              Data Structure
14%              Accelerator Object
15%  2. DeviceList - [Sector Device #] or [element #] list {Default or empty list: whole family}
16%
17%  OUTPUTS
18%  1. SPmin - Minimum setpoint of the device
19%
20%  NOTES
21%  1. If Family is a cell array, then DeviceList and Field can also be a cell arrays
22%
23%  See Also maxsp, getfamilydata(Family, Field, 'Range')
24
25%
26%  Written by Gregory J. Portmann
27
28[Data, ErrorFlag] = minpv(varargin{:});
Note: See TracBrowser for help on using the repository browser.