Borrar filtros
Borrar filtros

Problem in finding PDF of a set of samples

1 visualización (últimos 30 días)
may
may el 30 de Sept. de 2013
Comentada: Image Analyst el 1 de Oct. de 2013
I want to get PDF of a set of samples, A, from its histogram:
[n,x] =hist(A,Number_bins);
when I use the following code:
pdf=n/sum(n(:));
with different number of bins I get different results, to fix it I use this code
pdf=n/sum(n(:))/diff(x(1:2));
but some of numbers in pdf would be greater than one! (the probability should not be greater than one)
I really don't understand where the problem is. I would appreciate if you you could help me. Thank you.

Respuestas (1)

Image Analyst
Image Analyst el 30 de Sept. de 2013
Of course the PDF is different if you have different bin sizes. But most important is how you plan on using the PDF. What do you plan on doing with it? I think n/sum(n) is fine - you just have to know what you're dealing with when it comes time to use it. It tells you the probability of a sample falling into that bin.
  3 comentarios
may
may el 30 de Sept. de 2013
Editada: may el 30 de Sept. de 2013
I edited the question, thanks.
Image Analyst
Image Analyst el 1 de Oct. de 2013
Don't divide by the diff. And of course the PDF will vary according to the number of bins. Computers are digital - you can't have an infinite number of bins. It can't be continuous. It must be quantized and since the number of counts in the quantized pdf must equal the number of elements in your array, the value per bin must be different. My other question, about what you plan on doing with it, remains unanswered.

Iniciar sesión para comentar.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by