Normal

SCPI Commands :

IPM:RANDom:NORMal:LIMit
IPM:RANDom:NORMal:MEAN
IPM:RANDom:NORMal:STD
class NormalCls[source]

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

get_limit() float[source]
# SCPI: IPM:RANDom:NORMal:LIMit
value: float = driver.ipm.random.normal.get_limit()

Sets the limit parameter of the normal distribution function.

return:

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

get_mean() float[source]
# SCPI: IPM:RANDom:NORMal:MEAN
value: float = driver.ipm.random.normal.get_mean()

Sets the mean parameter of the normal distribution function.

return:

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

get_std() float[source]
# SCPI: IPM:RANDom:NORMal:STD
value: float = driver.ipm.random.normal.get_std()

Sets the standard deviation parameter of the normal distribution function.

return:

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

set_limit(limit: float) None[source]
# SCPI: IPM:RANDom:NORMal:LIMit
driver.ipm.random.normal.set_limit(limit = 1.0)

Sets the limit parameter of the normal distribution function.

param limit:

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

set_mean(mean: float) None[source]
# SCPI: IPM:RANDom:NORMal:MEAN
driver.ipm.random.normal.set_mean(mean = 1.0)

Sets the mean parameter of the normal distribution function.

param mean:

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

set_std(std: float) None[source]
# SCPI: IPM:RANDom:NORMal:STD
driver.ipm.random.normal.set_std(std = 1.0)

Sets the standard deviation parameter of the normal distribution function.

param std:

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