U

SCPI Commands :

IPM:RANDom:U:CENTer
IPM:RANDom:U:RANGe
class UCls[source]

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

get_center() float[source]
# SCPI: IPM:RANDom:U:CENTer
value: float = driver.ipm.random.u.get_center()

Sets the center parameter of the U distribution.

return:

center: float Range: -1e+09 to 1e+09

get_range() float[source]
# SCPI: IPM:RANDom:U:RANGe
value: float = driver.ipm.random.u.get_range()

Sets the range parameter of the U distribution.

return:

range_py: float Range: 1e-09 to 1e+09

set_center(center: float) None[source]
# SCPI: IPM:RANDom:U:CENTer
driver.ipm.random.u.set_center(center = 1.0)

Sets the center parameter of the U distribution.

param center:

float Range: -1e+09 to 1e+09

set_range(range_py: float) None[source]
# SCPI: IPM:RANDom:U:RANGe
driver.ipm.random.u.set_range(range_py = 1.0)

Sets the range parameter of the U distribution.

param range_py:

float Range: 1e-09 to 1e+09