I have implemented the following in the notebook and it works just
fine.
T = 130
A = log(T,10)*-15
B = 10**A
print B
However, I have tried to implement it as compiled code as follows:
import sage.all
def test(T)
A = sage.all.log(T,10)*-15
B = 10**B
return B
It seems to compile fine, but upon execution the following error
occurs:
NotImplementedError: non-integral exponents not supported
What do I need to do differently in the compiled code versus the
notebook to make this work?
Thanks!
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---