//How many points can be plotted in a frequency range (Delta F) where Delta F is -3 dB frequency band around a peak ?//
As many as the user desires, limited only by computation time. We've done a lot of testing with 10 and 100 points per FFT bin (1/T).
//Does this number depend on the peak frequency ?//
No.
//Does this number depend on sampling time (Delta T) and acquisition time (Length) of the signal ?//
Since the method computes an explicit numerical integral, the sampling time (step size) need not even be uniform. But if the sampling time is uniform, it effects only the maximum meaningful frequency (in the usual way). Further, the Fourier transform can be computed over any desired range of meaningful frequencies. One need not compute from Fmin = 0 Hz to Fmax = sample rate/2. If only a few peaks of approximately known frequencies are of interest, one need only compute the frequency spectrum under those peaks.
//For example if the ratio (Delta F)/F = 0.001,
how many points can be obtained if F = 10Hz or if F = 100Hz ?//
100 or 1000 or 100,000. Whatever the user desires. Our testing has shown (depending on the noise level), computing 100 points per FFT bin can yield more accurate determinations of the frequency and phase that correspond to a single peak.
//Is there an inverse transform ?//
We've written and tested code for it, but it is not included in the release. There are already a lot of inverse transforms out there, and we didn't see the demand, since the advantages of our method are mostly limited to data analysis applications limited to frequency analysis. As far as we can tell, applications that use inverse transforms won't really benefit from our method compared with traditional methods. Since the code has been released, we've had over 100 downloads per week, and no one has expressed an interest in the inverse transform.