Chapter 3: gaussian distribution plots
Chapter 3: gaussian distribution plots
symb={'--',':','-.'};
sigma=[2 5 3];
mu=[-11 3 15];
x=[-30:.05:30];
figure; hold on
for L=1:length(sigma),
plot(x,npdf(x,mu(L),sigma(L)),['k' symb{L}],'LineWidth',1.5); end