First time here? Check out the FAQ!
answered 11 years ago
Does this help?
sage: p = implicit_plot(x == y^2, (x, 0, 1), (y, 0, 1)) sage: pc = p._objects[0] sage: pc.xy_data_array # Big output here
Similarly for plot
plot
sage: p = plot(x) sage: pc = p._objects[0] sage: pc.xdata, pc.ydata