powered by
For given n probabilities 0 <= pi <= 1 with sum(pi)=1, return 0,1,2,3,..,n with probability p0, p1, p2, ..., pn.
getDecision(p)
vector of probabilities
int decision in the range from 0 to n
# NOT RUN { p <- c(0.6, 0.3, 0.1) getDecision(p) # }
Run the code above in your browser using DataLab