vote up -1 vote down star

Edit: this should be closed. I've voted to close it, and maybe someone else could vote to close it too? See comments.

I'm sure this must be easy, but I can't find out how to do it (it's not an easy subject to Google!)

I want to raise e to a non-integer power in python.

Does anyone know how to do this?

I am using code like this:

 e = 2.718281828459045235
 diff = e ** n

where n is a float. But that raises an exception:

TypeError: exponent must be an integer

Can anyone help?

EDIT: It's a completely weird problem. The following code works fine for me if I type it into python:

e ** 1.1

However, in my program it doesn't work. The reason it doesn't work seems to be that it is calling a matrix function from the numpy library. But the values being used are not matrices, they're just floats, so I don't understand why it's happening.

flag

What version of Python are you using? Your code seems to work as expected on Python 2.4.4 – vinc456 Feb 9 at 16:01
-1: Code works. Edit your question and I'll remove the negative vote. – nosklo Feb 9 at 16:09
Just needs to be closed as 'no longer relevant'. – Rich B Feb 9 at 16:12
I've voted to close it. I'm still trying to figure out what the actual problem is. – Ben Feb 9 at 16:15
I'm an idiot. I just realised I have two variables called e. One is a float and the other is a matrix of errors. D'oh. I deserve the down-votes! :-) – Ben Feb 9 at 16:23
show 3 more comments

closed as no longer relevant by Rich B, Ben, Triptych, EndangeredMassa Feb 9 at 16:51

5 Answers

vote up 6 vote down check

It works for me in both python 2.4 and 2.5:

>>> e = 2.718281828459045235
>>> n = 1.5
>>> e ** n
4.4816890703380645
>>>

Which version of python are you using?

link|flag
Huh. You're right: that just worked for me too. Clearly I'm doing something else stupid... – Ben Feb 9 at 16:02
vote up 5 vote down

Like this:

import math
print math.exp(1.0)

Link to documentation

link|flag
vote up 2 vote down

This seems to work in python 2.6.1.

n = 1.5
e = 2.718281828459045235
print e ** n
# prints 4.48168907034
link|flag
vote up 0 vote down

You can use decimal for more accuracy:

>>> import decimal
>>> d = decimal.Decimal("5.3434343") # anything here
>>> e = decimal.Decimal("2.718281828459045235")
>>> e ** d
Decimal("209.2300365417800267178108820")
link|flag
vote up 0 vote down

Others have already addressed ways to do exponentiation. However, I noticed that in your example, n is not initialized. With it uninitialized, I get an error (albeit different) also, but it works if before the diff = e ** n line I add a line like :

n = 1.5

So, did you initialize n in your actual program?

link|flag
Hi, thanks for the thought. I did initialise n. The problem seems to lie elsewhere (see my edited question). – Ben Feb 9 at 16:21

Not the answer you're looking for? Browse other questions tagged or ask your own question.