Description Usage Arguments Details Author(s) See Also Examples
Calculates the coefficients of the Laurent expansion of the Weierstrass P function in terms of the invariants
1 | ck(g, n=20)
|
g |
The invariants: a vector of length two with |
n |
length of series |
Calculates the series c_k as per equation 18.5.3, p635.
Robin K. S. Hankin
1 2 3 4 5 6 7 8 9 10 11 12 | #Verify 18.5.16, p636:
x <- ck(g=c(0.1+1.1i,4-0.63i))
14*x[2]*x[3]*(389*x[2]^3+369*x[3]^2)/3187041-x[11] #should be zero
# Now try a random example by comparing the default (theta function) method
# for P(z) with the Laurent expansion:
z <- 0.5-0.3i
g <- c(1.1-0.2i, 1+0.4i)
series <- ck(15,g=g)
1/z^2+sum(series*(z^2)^(0:14)) - P(z,g=g) #should be zero
|
Attaching package: 'elliptic'
The following objects are masked from 'package:stats':
sd, sigma
The following object is masked from 'package:base':
is.primitive
[1] 2.646978e-23+5.293956e-23i
[1] 2.442491e-15+4.44089e-16i
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.