To further clarify, I believe I'm able to do it assuming everything is uniformly distributed.
% Generate n samples from a uniform distribution
% r = a + rand(n,1) * (b-a)
% a : minimum
% b : maximum
Since I can make the minimum like -.3 and the max + .3 for example. My issue is that the mean of these is 0...so I don't know how to program it making it normally distributed.
% Generate n samples from a normal distribution
% r = ( randn(n,1) * sd ) + mu
% mu : mean
% sd : standard deviation
