Bandwidth

SCPI Commands :

CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:FILTer:GAUSs:BWIDth
CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:FILTer:GAUSs:BWIDth:ALL
class BandwidthCls[source]

Bandwidth commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get(index: int) float[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:FILTer:GAUSs:BWIDth
value: float = driver.configure.gprf.measurement.power.parameterSetList.filterPy.gauss.bandwidth.get(index = 1)

Selects the bandwidth for a filter of Gaussian shape for the parameter set <Index>.

param index:

No help available

return:

bandwidth: For supported values, see Table ‘Supported values’.

get_all() List[float][source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:FILTer:GAUSs:BWIDth:ALL
value: List[float] = driver.configure.gprf.measurement.power.parameterSetList.filterPy.gauss.bandwidth.get_all()

Selects the bandwidth for a filter of Gaussian shape for all parameter sets.

return:

bandwidth: Comma-separated list of 32 values, for parameter set 0 to 31. For supported values, see Table ‘Supported values’.

set(index: int, bandwidth: float) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:FILTer:GAUSs:BWIDth
driver.configure.gprf.measurement.power.parameterSetList.filterPy.gauss.bandwidth.set(index = 1, bandwidth = 1.0)

Selects the bandwidth for a filter of Gaussian shape for the parameter set <Index>.

param index:

No help available

param bandwidth:

For supported values, see Table ‘Supported values’.

set_all(bandwidth: List[float]) None[source]
# SCPI: CONFigure:GPRF:MEASurement<Instance>:POWer:PSET:FILTer:GAUSs:BWIDth:ALL
driver.configure.gprf.measurement.power.parameterSetList.filterPy.gauss.bandwidth.set_all(bandwidth = [1.1, 2.2, 3.3])

Selects the bandwidth for a filter of Gaussian shape for all parameter sets.

param bandwidth:

Comma-separated list of 32 values, for parameter set 0 to 31. For supported values, see Table ‘Supported values’.