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.
