[sage-support] sageplot axis numbering

2008-09-27 Thread Munthe
Hey I'm writing a paper about the trigonometric functions, using LaTeX and sagetex. And would therefore like to chance the the default numbering on the x-axis to a pi scale. Thanks, Munthe --~--~-~--~~~---~--~~ To post to this group, send email to sage-su

[sage-support] Re: Functions won't evaluated outside [-1..1] using plot

2008-09-10 Thread Munthe
Thanks, that worked. -- Munthe On Sep 9, 1:27 pm, "John Cremona" <[EMAIL PROTECTED]> wrote: > You need to set the range in the plot command, not in the show > command.  This works for me: > > sage: f = sin(x) > sage: plot(f, (-5,+5)) > > or even > >

[sage-support] Functions won't evaluated outside [-1..1] using plot

2008-09-09 Thread Munthe
63138 sage: p = plot(f) sage: show(p,xmax=2*pi) Only gives me the graph until x==1, and leaves the rest of the figure blank with only hte axes on. Anybody knows what I'm doing wrong? Is there a way to define which interval a functions get evaluated at? Thanks in