I suppose you want to plot the complex numbers that are the roots. You can do the following:
list_plot([CDF(s.rhs()) for s in solve([mu^6==1],mu)]) Once #16378 ( http://trac.sagemath.org/ticket/16378 ) is fixed, you will not need to coerce to CDF, and so the following will also work (as long as there is at least one complex number in the list of solutions): list_plot([s.rhs() for s in solve([mu^6==1],mu)]) On Tuesday, June 10, 2014 2:48:08 PM UTC+8, David Ingerman wrote: > > > How to plot output of solve() on coordinate plane? > For example: show((solve([mu^6==1],mu))) gives symbolic LaTex output > > Thank you... > -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sage-support. For more options, visit https://groups.google.com/d/optout.
