1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
rand
=rand()
continuous uniform distribution, between a and b
=a+(b-a)*rand()
discrete uniform distribution, between a and b
=int(a+(b-a)*rand()) or =randbetween(a,b)-INT
normal distribution
mean = μ , std dev = σ =norminv(ran(),μ,σ)
discrete general distribution, more than 2 outcomes
=lookup(rand(),range 1,range 2)