| 1 | initial version |
var('x')
sqplot = [CC(x + x^2*I - 2*x*I + 5*I) for x in [-5..7,step=.01]]
point(sqplot,size=2)

| 2 | No.2 Revision |
You can use point in a list comprehension for an Argand plane.
var('x')
sqplot = [CC(x + x^2*I - 2*x*I + 5*I) for x in [-5..7,step=.01]]
point(sqplot,size=2)

Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.