Y doesn't increment
Posted: Mon Feb 27, 2006 3:49 pm
I can't see why Y won't increment. Is it something to do with the StrartDrawing command?
The code below is obviously only a part of the main program.
Any comments most welcomed.
Alan
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()