The exp tag has no wiki summary.
4
votes
2answers
119 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++)
...
4
votes
1answer
417 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 ...
4
votes
2answers
2k 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 ...
4
votes
2answers
2k 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
724 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 ...
2
votes
2answers
41 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?
2
votes
5answers
245 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 ...
2
votes
2answers
226 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). ...
2
votes
2answers
532 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 += ...
1
vote
1answer
513 views
Oracle exp dump file import issue IMP-00009: abnormal end of export file
While importing an oracle database via imp, it terminates with below error
IMP-00009: abnormal end of export file
Import terminated successfully with warnings.
The exp was run on the same machine ...
1
vote
2answers
4k 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) ...
0
votes
2answers
87 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 = ...
0
votes
2answers
59 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
76 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 ...
0
votes
1answer
251 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 ...
0
votes
4answers
641 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 ...