Find histogram bins at which cumulative histogram has 75% of maximum value

1 view (last 30 days)
How to find histogram bins at which cumulative histogram has 75% of maximum value of an image.
  1 Comment
KALYAN ACHARJYA
KALYAN ACHARJYA on 13 Nov 2019
Edited: KALYAN ACHARJYA on 13 Nov 2019
Its easy, have you tried with Note book and pen,Maths? Please do that, we will help you to implement?

Sign in to comment.

Accepted Answer

the cyclist
the cyclist on 20 Nov 2019
You don't give much detail. Do you have the underlying data, or just the counts from the histogram bins?
If you have the data, then the prctile command may help you do what you want.
p75 = prctile(x,75)
will give the estimated value of x where the cumulative probability is 0.75.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!