The Exponential - aka exp(x) function

learn more… | top users | synonyms

1
vote
1answer
44 views

Parallelization of EXP

Do you think it would be possible to calculate the exponential function using more than one thread? I have a code where the bottle neck is the calculation of long double expl( long double ). All the ...
1
vote
1answer
56 views

Taking logs and adding versus multiplying

If I want to take the product of a list of floating point numbers, what's the worst-case/average-case precision lost by adding their logs and then taking exp of the sum as opposed to just multiplying ...
1
vote
1answer
34 views

Get level by experience

I have this code: function getLevels($cEXP) { // $cEXP is current player experience $i = 1; while(!$n) { $NextLevelXP = pow($i,3) + 2 * $i; if($NextLevelXP > $cEXP) { ...
1
vote
0answers
44 views

Oracle IMP Schema prefix troubles

I have got dump files of oracle schema e.g. HR from client (generated by EXP utility), I am not able to configure a manage export process, then on my oracle server I want import with IMP utility ...
0
votes
1answer
48 views

Is there method to calculate the equation in pic? [closed]

Only x_k is unknown. Any method to solve this equation? The equation always exist. I have tried use solve() in matlab to solve this equation. But failed after any strive.
0
votes
2answers
109 views

which method to implement exp function in c? [closed]

I want to calculate the error of exp function under finite precision(data type is double). Is taylor series or other special algorithm?
1
vote
1answer
143 views

Where in the python source code is math.exp() defined?

I want to known how to implement the math.exp() function in python. Where in the Python source code is math.exp() defined?
2
votes
1answer
86 views

Transform numbers with exponents to plotmath commands for beautiful legends in R

I'm trying to generate a beautiful legend in R plots. I have a factor=1e-5, that should appear nicely formatted in the legend. I found a nice function in the package sfsmisc, that transforms numbers ...
1
vote
1answer
29 views

exp() precision between Mac OS and Windows

I got a code here, and when I run them on Win and Mac OS, the precision of the results is different, anyone can help? const double c = 1 - exp(-2.0); double x = (139 + 0.5) / 2282.0; x = ( 1 - ...
1
vote
4answers
55 views

DecimalFormat the answer? [duplicate]

Please forgive my ignorance, I'm a beginner. Can anyone tell me why I am getting my error code in the if/else statement below? I think my result for the ln multiplication is is not exactly the same ...
1
vote
2answers
48 views

Generate a self working EXP system for levels

I am making a small game in C# and I can't figure out how to make a self working EXP system that gets the EXP you need to level up by the players current level. This is how I want it to work. 1 = 75 ...
0
votes
1answer
43 views

Exponentiation of a large floating point imaginary argument

How do I go about calculating exp(i * x) where |x| >> 2 pi? I know that it can be done with an arbitrary precision library, but is there an algorithm to do it stably (without roundoff errors) that ...
0
votes
2answers
182 views

Floating point numbers precision [duplicate]

Possible Duplicate: Precision of Floating Point I am trying to calculate the probability using some floating point numbers but always my final result is coming out as zero. Please find the ...
0
votes
2answers
300 views

PHP MySql Progress Bar [duplicate]

Possible Duplicate: Progress bar layout using CSS and HTML I'm making a game that involves energy, EXP, level, missions, etc. Well, When you do missions it costs energy and you recieve cash ...
2
votes
0answers
528 views

Visual Studio 2010 C++ Project: Build Release EXE File generates EXE, LIB and EXP File. Why?

I'm building a C++ project in Release-Mode and the target type is an EXE-File. The project also generates a .lib and a .exp-file. What is wrong? I only want to build an exe-file. Any ideas? Thank ...
1
vote
3answers
216 views

Is the floating point implementation of exp() function equivalent to a truncated Taylor series expansion?

Is the floating point implementation of exp() function in cmath equivalent to a truncated Taylor series expansion of a very high order? One possible source of the error we should keep in mind is the ...
0
votes
0answers
19 views

Load file to oracle [duplicate]

Possible Duplicate: Import a Oracle DMP file into a Fresh install of oracle Good evening to you all, I'm in trouble, a client sent me an oracle project for me to do maintenance. I had to ...
5
votes
2answers
188 views

when to use expm1 instead of exp in java

I am confused about using expm1 function in java The Oracle java doc for Math.expm1 says: Returns exp(x) -1. Note that for values of x near 0, the exact sum of expm1(x) + 1 is much closer to the ...
1
vote
1answer
154 views

Calculating Markov chain probabilities with values too large to exponentiate

I use the formula exp(X) as the rate for a markov chain. So the ratio of selecting one link over another is exp(X1)/exp(X2). My problem is that sometimes X is very large, so exp(X) will exceed the ...
2
votes
1answer
135 views

exp() returns NaN stuff

Ok, I'm stuck. I have this PHP code: echo exp(12), '<br/>'; echo exp(4.2); just like on the PHP.net page. And what I have on the screen: NAN 298.86740096706 but then there ...
13
votes
5answers
2k views

Fast Exp calculation: possible to improve accuracy without losing too much performance?

I am trying out the fast Exp(x) function that previously was described in this answer to an SO question on improving calculation speed in C#: public static double Exp(double x) { var tmp = ...
1
vote
1answer
362 views

Attempting to use SQL-Developer to analyze a system table dump created with 'exp'

I'm attempting to recover the data from a specific table that exists in a system table dump I performed earlier. I would like to append the rows existing in the dump to any rows that may exist in the ...
1
vote
1answer
944 views

Deal with overflow in exp using numpy

Using numpy, I have this definition of a function: def powellBadlyScaled(X): f1 = 10**4 * X[0] * X[1] - 1 f2 = numpy.exp(-numpy.float(X[0])) + numpy.exp(-numpy.float(X[1])) - 1.0001 ...
6
votes
6answers
282 views

Disappointing performance in Ubuntu for computational workload

I've found rather poor performance running some computational code under Ubuntu on a brand new headless workstation machine I'm using for scientific computation. I noticed a difference in speed ...
2
votes
2answers
161 views

Actual type of a .dmp file

I get .dmp files every so often that I need to load in a database. Some of them are created with datapump and some with exp. Is there a simple way to tell them apart that I could put in a script?
0
votes
2answers
250 views

Find links in string with PHP. Differ from normal and youtube links

I have a string that contain links. I want my php to do different things with my links, depending on the url. Answer: function fixLinks($text) { $links = array(); $text = ...
4
votes
2answers
553 views

exp function using c++

I can't figure out why I keep getting the result 1.#INF from my_exp() when I give it 1 as input. Here is the code: double factorial(const int k) { int prod = 1; for(int i=1; i<=k; i++) ...
0
votes
2answers
100 views

Bad exp calc function?

What is wrong with this function? When I use 31 for exp, this function becomes an infinite loop! How can I fix that? Please help and optimize this function for me if you can, thanks. public function ...
0
votes
1answer
184 views

What is the proper way to modify an Exported Symbols File in Xcode?

I am modifying an existing projects framework, its is a custom JavaScriptCore framework. The JavaScriptCore Export Symbol File is included in the project. How do I properly add a function to the ...
3
votes
6answers
2k views

php game, formula to calculate a level based on exp

Im making a browser based PHP game and in my database for the players it has a record of that players total EXP or experience. What i need is a formula to translate that exp into a level or rank, out ...
0
votes
1answer
2k views

Oracle imp and exp commands

Normally when i have to take a backup of of a database on unix, i do, exp DBUSER/DBPSW@INST file=xxx.dmp or load from a dump imp DBUSER/DBPSW@INST file=xxx.dmp my question here is : how can ...
2
votes
2answers
986 views

VBA Exp() Overflow

Here's a very easy question for the VBA guys. I'm running Newton's method on some functions, and occasionally I find a guess that I can only assume overflows the Exp() function (and stops the code). ...
5
votes
1answer
988 views

Using AVX instructions disables exp() optimization?

I am writing a feed forward net in VC++ using AVX intrinsics. I am invoking this code via PInvoke in C#. My performance when calling a function that calculates a large loop including the function ...
2
votes
2answers
1k views

EXP to Taylor series

I'am trying to expand exp(x) function to Taylor series. Here is code: double CalcExp(){ double eps = 0.0000000000000000001; double elem = 1.0; double sum = 0.0; int i = 1; sum = 0.0; do { sum += ...
3
votes
2answers
28k views

MATLAB exponential - how to represent e^(-t^2)?

I am a beginner in MATLAB, and i need to represent e^(-t^2). I know that, for example, to represent e^x i use exp(x), and i have tried the following 1) tp=t^2; / tp=t*t; x=exp(-tp); 2) ...
8
votes
4answers
4k views

Fast fixed point pow, log, exp and sqrt

I've got a fixed point class (10.22) and I have a need of a pow, a sqrt, an exp and a log function. Alas I have no idea where to even start on this. Can anyone provide me with some links to useful ...
0
votes
4answers
1k views

C++ : complexity of the implementation of exp in cmath and real cost of the cost of a call compared to a floating point operation?

[I globally edited the question to be more "useful" and clear] Hello all, I was wondering about the complexity of the implementation of the function exp in cmath. By complexity, I mean algorithmic ...
5
votes
2answers
5k views

Why does my Visual C++ .exe project build create .lib and .exp files?

I have a solution consisting of 3 projects. One is a static library, and two are console-based .exe files that depend on and link against this library. Their settings seem to be identical. I build one ...
4
votes
3answers
1k views

Can I use imp/exp tools to migrate database from Oracle 9 to Oracle 10

I'm subcontractor and my client wants to upgrade Oracle database from 9 to 10. Other vendor is going to perform the upgrade process, and I was asked to create whatever backup I need before the ...