Hello all, is there any other possibility how to plot implicit
function than implicitplot?
I do not like implicitplot too much, since it is in fact countourplot
and it is not easy to set the color (for example).
Thanks
Robert Marik
--~--~-~--~~~---~--~~
To post to
Dear Support,
Implicit plotting with normal variables is fine:
sage: var('x,y')
(x, y)
sage: f(x,y)=x^2+y^2-1
sage: implicit_plot(f(x,y),(-1,1),(-1,1)) # Fine
sage: implicit_plot(f,(-1,1),(-1,1)) # Fine
Change this to _fast_float_ and I run into problems:
sage: g=f._fast_float_()
sage: implici