Tagged Questions
10
votes
1answer
800 views
When do I use fabs and when is it sufficient to use std::abs?
I assume that abs and fabs are behaving different when using math.h. But when I use just cmath and std::abs, do I have to use std::fabs? or fabs? Or isn't this defined?
4
votes
7answers
953 views
Visual C++ math.h bug
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 compile it with VC (i've tried ...
3
votes
7answers
4k views
finding cube root in C++?
Strange things happen when i try to find the cube root of a number.
The following code returns me undefined. In cmd : -1.#IND
cout<<pow(( double )(20.0*(-3.2) + 30.0),( double )1/3)
While ...
3
votes
6answers
358 views
Is it possible to roll a significantly faster version of modf
In an app I'm profiling, I found that in some scenarios this function is able to take over 10% of total execution time.
MSVC++ 2008 compiler is being used, for reference... I don't recall if modf ...
3
votes
6answers
589 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 exponent."
I am looking ...
3
votes
5answers
5k views
what is the difference between atan and atan2 in c++?
what is the difference between atan and atan2 in c++ ?
2
votes
6answers
234 views
C/C++ fastest cmath log operation
So I'm trying to calculate logab (and get a floating point back, not an integer). I was planning to do this as log(b)/log(a). Mathematically speaking, I can use any of the cmath log functions (base 2, ...
1
vote
1answer
457 views
Problem with _USE_MATH_DEFINES in C++ (VS2010)
I have got the following problem:
I want to use M_PI defined in math.h. In order to do that, one should define _USE_MATH_DEFINES before including the header.
The following solution works correctly:
...
0
votes
1answer
22 views
Sinf - Does it exist in C++?
I was curious to know whether or not the sinf function existed in C++ through including math.h.
When viewing my auto-completion in Qt Creator, it doesn't appear to pop up. It makes me wonder if, for ...
0
votes
4answers
137 views
Find distance between x & y coordinates? [closed]
i've researched everywhere & can't find any good help to finish this program. The requirements are to write a complete C++ program that prompts the user for the x and y coordinates of two ...
0
votes
2answers
232 views
Adding functions erf() and erfc() to math.h _ basics of C .
I am working with the Borland Turbo C++ compiler in a WINDOWS machine, and wrote a piece of code in C.
I want to use the complementary error function erfc() for one of my calculations.
However, ...
-1
votes
4answers
79 views
Squareroot returning not a number in C++
In the program below, I am trying to calculate the distance between two points. For this, I have made two Point objects. In the method that returns the distance, I have used the distance formula to ...
-1
votes
1answer
74 views
fstream stopping math.h from working [closed]
Possible Duplicate:
cmath compilation error when compiling old C++ code in VS2010
Compilation fails in VS2010 for C++ programs building fine in Linux
I am creating a program in C++ in ...