Borrar filtros
Borrar filtros

how can i plot the pdf of a bernoulli using matlab

1 visualización (últimos 30 días)
oshomah kanoba
oshomah kanoba el 1 de Mzo. de 2015
Comentada: Image Analyst el 1 de Mzo. de 2015
which algorithm can i use in plotting the cdf of a bernoulli using matlab

Respuestas (1)

Star Strider
Star Strider el 1 de Mzo. de 2015
Editada: Star Strider el 1 de Mzo. de 2015
The closest you can get is the binomial distrbution, specifically the binopdf function (in the Statistics Toolbox).
— EDIT —
Your Subject says ‘pdf’ and your Question says ‘cdf’. This uses ‘cdf’.
Experiment with this to get the result you want:
% Bernoulli CDF Plot
p = 0.5; % Probability Of Success
N = 10; % Maximum Number OF Trials
Nv = [1:N];
C = binocdf(1, Nv, 0.5);
figure(1)
plot(Nv, C)
grid
  1 comentario
Image Analyst
Image Analyst el 1 de Mzo. de 2015
I'm not sure if the question is about how to plot, or how to get the cdf/pdf, or both. Other plotting options include bar() and area().

Iniciar sesión para comentar.

Etiquetas

Productos

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by