The binomial distribution can be calculated in matlab using the binopdf
function which returns the probability mass function (pmf) value for a given number of trials and successes, given the probability of success in each trial.
Here's an example code snippet to calculate the binomial distribution for 10 trials with probability of success as 0.2, and then finding the probability of getting exactly 3 successes.
main.m232 chars12 lines
The output of this code will be:
Probability of getting exactly 3 successes = 0.201326592
gistlibby LogSnag