StartStopBaseOptions#

class StartStopBaseOptions(start, stop, count=None, base=None)#

Bases: SweepOptions

Range generation options.

Values are generated over the interval from base power start to base power stop. The number of values = count. These options are used only for exponential sweep range.

Module: exa.common.control.sweep.option.start_stop_base_options

Attributes

base

Number, that is raised to the power start or stop.

count

Number of values to generate.

start

The power for the start of the interval.

stop

The power for the end of the interval.

Methods

Parameters:
start: int | float | complex#

The power for the start of the interval.

stop: int | float | complex#

The power for the end of the interval.

count: int = None#

Number of values to generate. Default to exa.common.control.sweep.option.constants.DEFAULT_COUNT.

base: int | float = None#

Number, that is raised to the power start or stop. Default to exa.common.control.sweep.option.constants.DEFAULT_BASE.