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
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
>
>
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