Viewing 4 posts - 1 through 4 (of 4 total)
Sounds a bit like a Sudoku puzzle, there might be similar techniques you could use
August 12, 2010 at 6:52 am
James Goodwin (8/12/2010)
However, for this case you don't need a random set, you need an arbitrary set of numbers. (More accurately,...
August 12, 2010 at 6:39 am
I've tried to implement a LFSR as follows but it's not quite working. But in principle it should be possible.
set nocount on
declare @lfsrTable table(period int,value int NOT NULL)
declare @lfsr int
declare...
August 12, 2010 at 5:27 am
There is a terminolgy issue here. The numbers in this sequence are not actually random as we could predict the next number in the sequence by looking at the previous...
August 12, 2010 at 3:10 am
Viewing 4 posts - 1 through 4 (of 4 total)