Scale

SCPI Commands

DISPlay:WINDow<Window>:TRACe<Trace>:Y:SCALe
class ScaleCls[source]

Scale commands group definition. 10 total commands, 8 Subgroups, 1 group commands

get(window=Window.Default, trace=Trace.Default) float[source]
# SCPI: DISPlay[:WINDow<n>]:TRACe<t>:Y[:SCALe]
value: float = driver.display.window.trace.y.scale.get(window = repcap.Window.Default, trace = repcap.Trace.Default)
This command defines the value range displayed on the y-axis.

INTRO_CMD_HELP: Prerequisites for this command

  • Turn off automatic scaling of the y-axis (method RsFswp.Display.Window.Trace.Y.Scale.Auto.set) .

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

scale: No help available

set(scale: float, window=Window.Default, trace=Trace.Default) None[source]
# SCPI: DISPlay[:WINDow<n>]:TRACe<t>:Y[:SCALe]
driver.display.window.trace.y.scale.set(scale = 1.0, window = repcap.Window.Default, trace = repcap.Trace.Default)
This command defines the value range displayed on the y-axis.

INTRO_CMD_HELP: Prerequisites for this command

  • Turn off automatic scaling of the y-axis (method RsFswp.Display.Window.Trace.Y.Scale.Auto.set) .

param scale

No help available

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’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.display.window.trace.y.scale.clone()

Subgroups