State

SCPI Commands

DISPlay:WINDow<Window>:TRACe<Trace>:SMOothing:STATe
class StateCls[source]

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

get(window=Window.Default, trace=Trace.Default) bool[source]
# SCPI: DISPlay[:WINDow<n>]:TRACe<t>:SMOothing[:STATe]
value: bool = driver.display.window.trace.smoothing.state.get(window = repcap.Window.Default, trace = repcap.Trace.Default)

This command turns trace smoothing for a specific trace on and off. When you turn on trace smoothing, you can define the smoothing magnitude with method RsFswp.Display.Window.Trace.Smoothing.Aperture.set. In the Spot Noise vs Tune measurement, trace smoothing applies to either all traces or none. Use [SENSe:]SMOothing[:STATe] in that case.

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Window’)

param trace

optional repeated capability selector. Default value: Tr1 (settable in the interface ‘Trace’)

return

state: ON | OFF | 1 | 0

set(state: bool, window=Window.Default, trace=Trace.Default) None[source]
# SCPI: DISPlay[:WINDow<n>]:TRACe<t>:SMOothing[:STATe]
driver.display.window.trace.smoothing.state.set(state = False, window = repcap.Window.Default, trace = repcap.Trace.Default)

This command turns trace smoothing for a specific trace on and off. When you turn on trace smoothing, you can define the smoothing magnitude with method RsFswp.Display.Window.Trace.Smoothing.Aperture.set. In the Spot Noise vs Tune measurement, trace smoothing applies to either all traces or none. Use [SENSe:]SMOothing[:STATe] in that case.

param state

ON | OFF | 1 | 0

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Window’)

param trace

optional repeated capability selector. Default value: Tr1 (settable in the interface ‘Trace’)