Range

SCPI Command:

SOURce:AFRF:GENerator<Instance>:ARB:SAMPles:RANGe
class RangeCls[source]

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

class RangeStruct[source]

Response structure. Fields:

  • Range_Py: enums.ArbSamplesRange: FULL | SUB FULL Process all samples SUB Process a subrange according to Start and Stop

  • Start: int: Start of the subrange (always first sample, labeled zero) Range: 0 (fixed value)

  • Stop: int: End of the subrange Range: 16 to samples in ARB file - 1

get() RangeStruct[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:ARB:SAMPles:RANGe
value: RangeStruct = driver.source.afRf.generator.arb.samples.range.get()

Selects whether all samples or a subrange of samples is processed.

return:

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

set(range_py: ArbSamplesRange, start: int = None, stop: int = None) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:ARB:SAMPles:RANGe
driver.source.afRf.generator.arb.samples.range.set(range_py = enums.ArbSamplesRange.FULL, start = 1, stop = 1)

Selects whether all samples or a subrange of samples is processed.

param range_py:

FULL | SUB FULL Process all samples SUB Process a subrange according to Start and Stop

param start:

Start of the subrange (always first sample, labeled zero) Range: 0 (fixed value)

param stop:

End of the subrange Range: 16 to samples in ARB file - 1