Hello,
I think also that there is a problem.

More simply, something like


--------------------------
var('a')
plot(a^2==3,a,1,7)
--------------------------

should work like

-----------------------------------
var('a')
plot(bool(a^2==3),a,1,7)
-----------------------------------

But the plot function doesn't support booleans.
Just try this.

--------------------------
var('a')
plot(a^2<=3,a,1,7)
--------------------------

Best regards.
Christophe.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to