Link
SCPI Command :
[SENSe]:FREQuency:CENTer:STEP:LINK
- Commands in total: 2Subgroups: 1Direct child commands: 1
- get() FrequencyCouplingLinkA[source]
# [SENSe]:FREQuency:CENTer:STEP:LINK value: enums.FrequencyCouplingLinkA = driver.sense.frequency.center.step.link.get()
Couples and decouples the center frequency step size to the span or the resolution bandwidth.
- Returns:
coupling_type: SPAN | RBW | OFF SPAN Couples the step size to the span. Available for measurements in the frequency domain. (for RF spectrum result display) RBW Couples the step size to the resolution bandwidth. Available for measurements in the time domain. (for all result displays except RF spectrum) OFF Decouples the step size.
- set(coupling_type: FrequencyCouplingLinkA) None[source]
# [SENSe]:FREQuency:CENTer:STEP:LINK driver.sense.frequency.center.step.link.set(coupling_type = enums.FrequencyCouplingLinkA.OFF)
Couples and decouples the center frequency step size to the span or the resolution bandwidth.
- Parameters:
coupling_type – SPAN | RBW | OFF SPAN Couples the step size to the span. Available for measurements in the frequency domain. (for RF spectrum result display) RBW Couples the step size to the resolution bandwidth. Available for measurements in the time domain. (for all result displays except RF spectrum) OFF Decouples the step size.
Cloning the Group
# Create a copy of the original group, that exists independently
link_copy = driver.sense.frequency.center.step.link.clone()
Subgroups