Range

SCPI Command:

CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:MARKer<nr>:RANGe
class RangeCls[source]

Range commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class RangeStruct[source]

Response structure. Fields:

  • Xrange_Lower: float: Range: 0 s to SweepTime, Unit: s

  • Xrange_Upper: float: Range: 0 s to SweepTime, Unit: s

get(marker=Marker.Nr1) RangeStruct[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:MARKer<nr>:RANGe
value: RangeStruct = driver.configure.gprfMeasurement.spectrum.zeroSpan.marker.range.get(marker = repcap.Marker.Nr1)

Specifies the peak search range, for marker number <no> and zero span mode. Marker number one is the reference marker.

param marker:

optional repeated capability selector. Default value: Nr1

return:

structure: for return value, see the help for RangeStruct structure arguments.

set(xrange_lower: float, xrange_upper: float, marker=Marker.Nr1) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:SPECtrum:ZSPan:MARKer<nr>:RANGe
driver.configure.gprfMeasurement.spectrum.zeroSpan.marker.range.set(xrange_lower = 1.0, xrange_upper = 1.0, marker = repcap.Marker.Nr1)

Specifies the peak search range, for marker number <no> and zero span mode. Marker number one is the reference marker.

param xrange_lower:

Range: 0 s to SweepTime, Unit: s

param xrange_upper:

Range: 0 s to SweepTime, Unit: s

param marker:

optional repeated capability selector. Default value: Nr1