728x90
close all;
% Parameters
n = 125;
p = 0.10;
x = 0:n;
% Calculate PMF and CDF
pmf = binopdf(x, n, p);
cdf = binocdf(x, n, p);
% Plot PMF
figure;
stem(x, pmf, 'filled');
title('=PMF');
xlabel('Number of Passengers Showing Up');
ylabel('Probability');
% Plot CDF
figure;
stairs(x, cdf, 'b');
title('=CDF');
xlabel('Number of Passengers Showing Up');
ylabel('Cumulative Probability');
728x90
'호그와트' 카테고리의 다른 글
happy monday (0) | 2024.06.24 |
---|---|
어느 통계학자의 기록 with 캐럿 my codes (2) (0) | 2024.06.23 |
AI가 졸린지 아닌지 판별할 수 있는 건에 관하여 (0) | 2024.06.23 |
Where is caesar ? (0) | 2024.06.12 |
모든 스도쿠의 신 (0) | 2024.06.02 |