Tagged Questions

3
votes
7answers
133 views

Floating point again

Yesterday I asked a floating point question, and I have another one. I am doing some computations where I use the results of the math.h (C language) sine, cosine and tangent functi …
0
votes
3answers
266 views

Compiling in c++ with mysql, pthreads and gtk

Have someone ever done this before??? I am trying to use MinGW to compile a program using the MySQL libraries. I keep getting the message that the function 'rint' is redefined. Ok …
1
vote
6answers
173 views

Why is my compiled code so much slower on Windows than the same code compiled on OSX? [closed]

I am working on a cross-platform application that does some heavy number crunching. Specifically, it does some logarithmic spectral smoothing, i.e. many logarithms, trigonometric f …
3
votes
5answers
134 views

Is there a Java equivalent of frexp?

Is there a Java equivalent of the C / C++ function called frexp? If you aren't familiar, frexp is defined by Wikipedia to "break floating-point number down into mantissa and expon …
0
votes
3answers
401 views

erf(x) and math.h

According to this site the error function erf(x) comes from math.h. But actually looking in math.h, it isn't there, and gcc cannot compile the following test program while g++ can: …
4
votes
7answers
404 views

Visual C++ math.h bug

Hello! I was debugging my project and could not find a bug. Finally I located it. Look at the code. You think everything is OK, and result will be "OK! OK! OK!", don't you? Now com …
-1
votes
4answers
330 views

Calling functions from within function(float *VeryBigArray,long SizeofArray) from within objC method fails with EXC_BAD_ACCESS

Ok I finally found the problem. It was inside the C function(CarbonTuner2) not the objC method. I was creating inside the function an array of the same size as the file size so if …
17
votes
10answers
740 views

Why do you have to link the math library in C?

If I put stdlib.h or stdio.h, I don't have to link those but I have to link when I compile: gcc test.c -o test -lm What is the reason for that? Why do I have to explicitly link …
0
votes
3answers
287 views

Problem with conflict between mysql and math.h

Hello there... The problem is that the compiler says that there is a redefinition of a function between a library that belongs to MySQL and math.h from the std library. I have be …
2
votes
5answers
1k views

what is the difference between atan and atan2 in c++ ?

what is the difference between atan and atan2 in c++ ?