Uniform

SCPI Commands :

IPM:RANDom:UNIForm:MAXimum
IPM:RANDom:UNIForm:MINimum
IPM:RANDom:UNIForm:STEP
class UniformCls[source]

Uniform commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_maximum() float[source]
# SCPI: IPM:RANDom:UNIForm:MAXimum
value: float = driver.ipm.random.uniform.get_maximum()

Sets the range of the uniform distribution function.

return:

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

get_minimum() float[source]
# SCPI: IPM:RANDom:UNIForm:MINimum
value: float = driver.ipm.random.uniform.get_minimum()

Sets the range of the uniform distribution function.

return:

minimum: No help available

get_step() float[source]
# SCPI: IPM:RANDom:UNIForm:STEP
value: float = driver.ipm.random.uniform.get_step()

Sets the granularity of the uniform distribution function.

return:

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

set_maximum(maximum: float) None[source]
# SCPI: IPM:RANDom:UNIForm:MAXimum
driver.ipm.random.uniform.set_maximum(maximum = 1.0)

Sets the range of the uniform distribution function.

param maximum:

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

set_minimum(minimum: float) None[source]
# SCPI: IPM:RANDom:UNIForm:MINimum
driver.ipm.random.uniform.set_minimum(minimum = 1.0)

Sets the range of the uniform distribution function.

param minimum:

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

set_step(step: float) None[source]
# SCPI: IPM:RANDom:UNIForm:STEP
driver.ipm.random.uniform.set_step(step = 1.0)

Sets the granularity of the uniform distribution function.

param step:

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