This function generates a random binary variable with the input
of a continuous variable x
from a linear relation.
The probability of being 1 is calculated from the input
x
with the slope A
and the intercept
B
. Then a random generator generates the output, which
should be a binary variable.
function linear1D input Real x "Continuous variable"; input Real A = 1 "Slope of the linear function"; input Real B = 0 "Intercept of the linear function"; input Integer globalSeed "Seed for the random number generator"; output Boolean y "Binary variable"; end linear1D;