Interesting!
Thanks, bplus ( Do we need a "QB64 Phoenix Edition › QB64 Rising › Prolific Programmers › Vince" ? ).
Maybe I'm off-base, but would your [edit: your FFT ] program process a "square pulse" ? I.e. :
Thanks, bplus ( Do we need a "QB64 Phoenix Edition › QB64 Rising › Prolific Programmers › Vince" ? ).
Maybe I'm off-base, but would your [edit: your FFT ] program process a "square pulse" ? I.e. :
Code: (Select All)
Function f1(x) ' for 0 < x < 3
If 1 <= x and x <= 2 then f1 = 1 else f1 = 0
End Funtion