Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
176 views

How to have logarithmic bins in a Python histogram

As far as I know the option Log=True in the histogram function only refers to the y-axis. P.hist(d,bins=50,log=True,alpha=0.5,color='b',histtype='step') I need the bins to be equally spaced in ...
2
votes
2answers
721 views

Normalizing histogram bins in gnuplot

I'm trying to plot a histogram whose bins are normalized by the number of elements in the bin. I'm using the following binwidth=5 bin(x,width)=width*floor(x/width) + binwidth/2.0 plot 'file' using ...
2
votes
1answer
2k views

Am I using histc wrong, or is this MATLAB's fault?

Ok, here's some code in MATLAB: data = [1 1.5 2 3 4 4.5 5 6 7 7 7 0 0 0]; histc(data, [1:1:5]) histc(data, [1:1:5, inf]) histc(data, [-inf, 1:1:5]) which outputs the following: ans = 2 1 ...
1
vote
0answers
23 views

I need help in Delphi 2007 with initializing and printing to printers

I have been having issues with Printing from Delphi 2007 and Delphi 2010. I have put together an InitPrinter function for our applications printers since we don't want the user to have to choose the ...
1
vote
2answers
189 views

What package is to be installed in R for scatter plots with logarithmic binning?

I am trying to produce some high density scatter plots with R. What package should be installed for this? Or is there any other way to obtain the plots.
1
vote
1answer
83 views

How can 'arrange' command be used to generate a set of bins for histogram plot in R

While I try to plot histogram in R by defining a set of bins I get this error 'some 'x' not counted; maybe 'breaks' do not span range of 'x''. I am following the information on the website ...
1
vote
1answer
466 views

How to extract the fundamental frequency from cepstrum?

After applying a FFT, I get a spectrum with multiple frequency bins. How to get the fundamental frequency from this spectrum using the cepstral method? I've researched a lot, tryed a lot of codes and ...
1
vote
1answer
532 views

how to make a frequency function in matlab like the excel frequency function?

I have a list that is sorted and I want to know how many values are in each bin? I made bins using linspace(floor(fist_element_list), ceil(last_element_list), num_bins) Is there a built in function or ...
0
votes
2answers
179 views

Histogram in logarithmic scale in gnuplot

I have to plot an histogram in logarithmic scale on both axis using gnuplot. I need bins to be equally spaced in log10. Using a logarithmic scale on the y axis isn't a problem. The main problem is ...
-1
votes
2answers
149 views

Dividing a range into bins in matlab

I have the following range from a much larger matrix : range(a) ans = 94 153 144 59 79 90 131 64 My professor is asking us to: Divide the range into N = 10 equal-length ...