[Numpy-discussion] Exponential function, sine function and cos function

2022-06-04 Thread Brinley Patterson
Hi, By using the exponential equation: exp(x) = (sum{k=0}{n} 1/ k! ) ^ x the speed and accuracy of calculating exponent greatly increases. Plus it makes it easier to use with imaginary numbers. I have the python function code if you are interested to learn more about this. This equation can th

[Numpy-discussion] Re: Exponential function, sine function and cos function

2022-06-04 Thread Andras Deak
On Fri, Jun 3, 2022, at 23:54, Brinley Patterson wrote: > Hi, > > By using the exponential equation: > > exp(x) = (sum{k=0}{n} 1/ k! ) ^ x > > the speed and accuracy of calculating exponent greatly increases. Plus > it makes it easier to use with imaginary numbers. I have the python > function co