StartStopOptions#
- class StartStopOptions(start, stop, count=None, step=None)#
Bases:
SweepOptions
Range generation options.
Values are generated over the interval from start to stop. For linear sweep range the number of generated values can be based either on count or step. In case count is empty and step is not, step is used for calculating count. For exponential sweep range only count is used.
Module:
exa.common.control.sweep.option.start_stop_options
Attributes
Number of values to generate.
Size of spacing between values.
Starting value of interval.
Stopping value of interval.
Methods
- Parameters:
- count: int = None#
Number of values to generate. Must be non-negative. If count and step are empty, the default value of count is
exa.common.control.sweep.option.constants.DEFAULT_COUNT
.