CenterSpanOptions#
- class CenterSpanOptions(center, span, count=None, step=None, asc=None)#
Bases:
SweepOptions
Range generation options.
Values are generated over the interval with the center center and the size of span. 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.center_span_options
Attributes
Order of generated values.
Number of values to generate.
Size of spacing between values.
Value of interval center.
Size of the interval.
Methods
- Parameters:
- count: int = None#
Number of values to generate. If count and step are empty, the default value of count is
exa.common.control.sweep.option.constants.DEFAULT_COUNT
.