On 2/9/07, carlM <[EMAIL PROTECTED]> wrote:
> Latest update fails to build on fedora6, fortran compiler internal
> error. tail of make output:
>
> Making install in fortran
> make[2]: Entering directory `/mnt/extra/hcmeyer/sage/sage-1.5/spkg/
> build/quaddouble-2.2/src/fortran'
> f95 -O2 -ffree-f
> means your compiler is buggy...
>
knew that, checked rh bz for similar reports. Found one, attached the
ddmod.f source file to the bug. I already got bit by a c++ bug in
templates a couple of months ago. I sent the message for benefit of
other victims.
read the source, doesn't even look like fo
Not wanting to suggest I am the expert on this,
I would conjecture that splitting the plot in two parts
is the right way to do it. The reason why I think that is
because it seems reasonable to me that plot cleverly
concatenates lots of line plots. If true, it is the interpolation of
the point (-1,
Before doing your own coding, you might look at plot/axes.py.
There are no examples and I'm not sure it will help you,
but it seems related to what you want.
On 2/10/07, Joel B. Mohler <[EMAIL PROTECTED]> wrote:
>
> Now that I've more thoroughly read the reference manual and understand more
> the
Now that I've more thoroughly read the reference manual and understand more
the logical structure of how to do thing, I'm even more impressed with the
plotting.
One question lingers though: Is there any way to include gridlines with-out
coding my own? I've been enraged at maple for not suppo
On Saturday 10 February 2007 10:20, David Joyner wrote:
> Is this what you want?
>
> sage: f = lambda x:1/x
> sage: p = plot(f(x),-4,4)
> sage: show(p,xmin=-4,xmax=4,ymin=-4,ymax=4)
Hmm, now I feel stupid ... I shouldn't have read the documentation. Neither
the "show??" or "plot??" documentatio
Is this what you want?
sage: f = lambda x:1/x
sage: p = plot(f(x),-4,4)
sage: show(p,xmin=-4,xmax=4,ymin=-4,ymax=4)
On 2/10/07, Joel B. Mohler <[EMAIL PROTECTED]> wrote:
>
> I spent some time trying to make a pretty plot for my calculus quiz -- a plot
> of y=1/x. Ideally, I wanted a plot from
I spent some time trying to make a pretty plot for my calculus quiz -- a plot
of y=1/x. Ideally, I wanted a plot from -4..4 with range -4..4.
Unfortunately, the plot command calculates the range intelligently and I
could find no way to modify that behavior. Did I miss it?
I must say that I