You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, Thank you for your efforts. It is very fast. I tried it on the PRIME sieve where the idx are the prime numbers.
For n=1000 primes, I overshoot using gn = ceiling( n * log(n) + n * log(log(n)) )
Here is the format of the output... I truncate the function result to exactly n = 1000, but keep the full calculation; in this case it looks like there are 1102 primes with gn as upper bound.
My question is about storage. From my understanding, if I just save/load or saveRDS/readRDS on the 8841 elements, the filesize should only be about 1.1KB ... Trying both methods (save/saveRDS), I get 2.6KB ... it throws an error when I try writeBin.
I didn't see any SPECIAL read/write functions in the DOCS. Maybe I missed it.
Any ideas or suggestions?
Again thank you. I wonder if DNA researchers could use a two-bit version of this for "AGCT"? Very powerful.
The text was updated successfully, but these errors were encountered:
Hello, Thank you for your efforts. It is very fast. I tried it on the PRIME sieve where the idx are the prime numbers.
For n=1000 primes, I overshoot using
gn = ceiling( n * log(n) + n * log(log(n)) )
Here is the format of the output... I truncate the function result to exactly n = 1000, but keep the full calculation; in this case it looks like there are 1102 primes with
gn
as upper bound.My question is about storage. From my understanding, if I just save/load or saveRDS/readRDS on the 8841 elements, the filesize should only be about 1.1KB ... Trying both methods (save/saveRDS), I get 2.6KB ... it throws an error when I try writeBin.
I didn't see any SPECIAL read/write functions in the DOCS. Maybe I missed it.
Any ideas or suggestions?
Again thank you. I wonder if DNA researchers could use a two-bit version of this for "AGCT"? Very powerful.
The text was updated successfully, but these errors were encountered: