The code below is obviously only a part of the main program.
Any comments most welcomed.
Alan
Code: Select all
StartDrawing(WindowOutput())
DrawingMode(0)
For y=1 To 50
For s=0 To #fft_SampleSize/2
For x=1 To 300
Plot(x,y,fv(s))
Debug y
Next x
Next s
Next y
StopDrawing()