Dear all,
plot3d with threejs worked in 7.6 but it does not work in 8.0. Has anyone
seen it? Enrique
--
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-suppor
How to define alphanumeric variable like x1 =1, x2 =2, ... xn =n ? using
Loop.
--
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...@googlegr
Something like
sage: for n in range(10):
: exec("x{} = {}".format(n, n))
:
should do the job.
Eric.
--
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
t
Wed 2017-09-13 05:11:50 UTC, Venkataraman S:
> I am using sage 7.6. Recently installed GAP packages.
> The following input produces pdflatex error.
>
> R=PolynomialRing(RR,'x')
> points=[(0,1),(1,-3),(2,33),(3,589)]
> f=R.lagrange_polynomial(points)
> produces the following error message.
You see