Result

SCPI Command:

CONFigure:VSE:MEASurement<Instance>:RESult:EDIagram
CONFigure:VSE:MEASurement<Instance>:RESult:PVTime
CONFigure:VSE:MEASurement<Instance>:RESult:CONS
CONFigure:VSE:MEASurement<Instance>:RESult:SDIS
class ResultCls[source]

Result commands group definition. 4 total commands, 0 Subgroups, 4 group commands

get_cons() bool[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:RESult:CONS
value: bool = driver.configure.vse.measurement.result.get_cons()

Enables or disables the measurement of the constellation diagram.

return:

constellation_enable: OFF | ON

get_ediagram() bool[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:RESult:EDIagram
value: bool = driver.configure.vse.measurement.result.get_ediagram()

Enables or disables the measurement of the eye diagram.

return:

eye_diagram_enable: OFF | ON

get_power_vs_time() bool[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:RESult:PVTime
value: bool = driver.configure.vse.measurement.result.get_power_vs_time()

Enables or disables the measurement of the power vs. time results.

return:

power_vs_time_enable: OFF | ON

get_sdis() bool[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:RESult:SDIS
value: bool = driver.configure.vse.measurement.result.get_sdis()

Enables or disables the measurement of the symbol distribution results.

return:

sdistribution_enable: No help available

set_cons(constellation_enable: bool) None[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:RESult:CONS
driver.configure.vse.measurement.result.set_cons(constellation_enable = False)

Enables or disables the measurement of the constellation diagram.

param constellation_enable:

OFF | ON

set_ediagram(eye_diagram_enable: bool) None[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:RESult:EDIagram
driver.configure.vse.measurement.result.set_ediagram(eye_diagram_enable = False)

Enables or disables the measurement of the eye diagram.

param eye_diagram_enable:

OFF | ON

set_power_vs_time(power_vs_time_enable: bool) None[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:RESult:PVTime
driver.configure.vse.measurement.result.set_power_vs_time(power_vs_time_enable = False)

Enables or disables the measurement of the power vs. time results.

param power_vs_time_enable:

OFF | ON

set_sdis(sdistribution_enable: bool) None[source]
# SCPI: CONFigure:VSE:MEASurement<Instance>:RESult:SDIS
driver.configure.vse.measurement.result.set_sdis(sdistribution_enable = False)

Enables or disables the measurement of the symbol distribution results.

param sdistribution_enable:

OFF | ON