08/26/2009, 09:15 PM
(08/26/2009, 08:38 PM)jaydfox Wrote: How are you computing the Carleman matrix?Actually I use a direct formula, I thought that was the fasted method. But it seems that I am wrong:
Code:
C = Matrix([ [log(b)**n/factorial(n)*sum([binomial(m,k)*k**n*(b**x0)**k*(-x0)**(m-k) for k in range(m+1)]) for n in range(N)] for m in range(N)])I also always used precision 1000 but that does not stretch the time in that amount.
I really dont know why it takes so long.
Why is in your Carleman matrix output only little precision while you put in 512?
Quote:I use iterative matrix multiplication,
I am not sure how it works. Can you give just the basic idea?
