ComplexIntervalField(prec=53,
names=['4ti2-20061025', 'R-2.6.0', 'atlas-3.7.37', 'atlas-3.8.1', 'a...)
| source code
|
Return the complex field with real and imaginary parts having prec
*bits* of precision.
EXAMPLES:
sage: ComplexIntervalField()
Complex Interval Field with 53 bits of precision
sage: ComplexIntervalField(100)
Complex Interval Field with 100 bits of precision
sage: ComplexIntervalField(100).base_ring()
Real Interval Field with 100 bits of precision
sage: i = ComplexIntervalField(200).gen()
sage: i^2
[-1.0000000000000000000000000000000000000000000000000000000000000 .. -1.0000000000000000000000000000000000000000000000000000000000000]
|