1. Re: a 'speed' question
- Posted by wolfgang fritz <wolfritz at KING.IGS.NET> Apr 22, 1999
- 490 views
Thanks, Nick and Ralph, and anyone else, for your help. Here's the
data.
Using my original (JIRI) compressed BMP and the original:
b=b & getc(jk) --gave 3.4 seconds.
Using:
b=append(b,getc(jk)) --gave 2.4 seconds.
...and using:
b = repeat (0, 8139)
for index = 1 to 8139 do
b[index] = getc (jk)
end for --gave a 'much faster' 0.4 seconds.
...
Wolf.

