tags:

views:

36

answers:

1

As we know, 'hist' function in Matlab plots the histogram of an array. I need to know the numerical value of each bin. Could you help me please?

thanks

+4  A: 

Specify an output for hist.

[h,bins]=hist(data)

will get you what you want.

Doresoom

related questions