Oh, alright, well if I have DT([1,1,1,1]) = [1,4,9,0] then that would be
the matrix would be
[1,0,0,0]
[0,4,0,0]
[0,0,9,0]
[0,0,0,0]
As [1,0,0,0]*[1,1,1,1] = [1] (corresponding to 0 degree poly)
[0,4,0,0]*[1,1,1,1] = [4] (corresponding to x)
[0,0,9,0]*[1,1,1,1] = [9] (corresponding to x^2)...