Tagged Questions
The math.h tag has no wiki summary.
33
votes
10answers
3k 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 the math library ...
10
votes
1answer
785 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
2answers
153 views
tan ( pi/2 ) in objective-c (math.h) not undefined
I wrote this test code:
NSLog(@"%g", tan(M_PI / 2.0));
and the output of the console is:
1.63312e+16
The issues is about approximation, right? Did I make some mistakes or the tan function of ...
3
votes
2answers
141 views
Linking with gcc and -lm doesn't define ceil() on Ubuntu
I am currently using gcc to compile and I need to use <math.h>.
Problem is that it won't recognize the library.
I have also tried -lm and nothing.
The function I tried to use was ceil() and I ...
3
votes
3answers
566 views
Error function, erf(x), not found in math.h for visual studio 2005
It seems that cmath for visual studio 2005 does not have erf(x). I am using NIST Statistical Test Suite for Random and Pseudorandom Number Generators. In cephes.c's method, double ...
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
5answers
399 views
sqrt() function not working with variable arguments
I don't know if I'm missing something obvious, but it appears that I'm unable to compute square roots of a variable in C; the sqrt() function only seems to work on constants. This is my code:
...
3
votes
6answers
357 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
241 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 functions.
One of the ...
3
votes
6answers
586 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
3answers
876 views
c math linker problems on Ubuntu 11.10
some strange error appeared after I upgraded my Ubuntu from (10.11, 11.04 i dont know) to 11.10
i get an undefined reference to 'sqrt' while using math.h and linking with -lm
I'm compiling with gcc ...
2
votes
6answers
229 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, ...
2
votes
1answer
272 views
Looking for a pure c-version of math.h functions (no co-processor support)
i'm looking for some math.h definitions without co-processor use (e.g. sqrt, pow, remainder, tan; int/float/double).
When i looked for it in a libc shipped with some linux distributions (maybe now ...
1
vote
1answer
29 views
Linking error - gcc -lm
Well, I think my problem is a little bit interesting and I want to understand what's happening in my Ubuntu box.
I compiled and linked with gcc -lm -o useless useless.c the following useless piece of ...
1
vote
1answer
35 views
How do I normalise the input value for acosf or asinf?
I need to obtain an inverse cosine and inverse sine from the result of a series of other calculations. If my input value is outside the range -1 to 1 then acosf or asinf return nan, which is expected ...
1
vote
1answer
136 views
Undefined reference to exp on Ubuntu (including math.h and linking with -lm)
I'm having some trouble trying to compile a program that uses exp function on Ubuntu. I get this error from gcc:
selied@Apolo:~/Dropbox/practicas UAM/Neuro/practica3$ make
gcc -lm -o retropropagacion ...
1
vote
1answer
67 views
difference dev-cpp and Microsoft Visual C++ math.h
a few days ago, I worked on project in VC++. I found out, that math.h in VC++ differs much from dev-cpp math.h. Particulary its round function, that is not present in Visual C++ math.h, but is ...
1
vote
1answer
453 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:
...
1
vote
2answers
190 views
sqrt() returning INF
Hi I'm trying to do some calculations with long doubles and I am getting INF from sqrt() function.
Code:
#include <math.h>
#include <stdio.h>
int main()
{
long double bigNUMBER;
...
1
vote
3answers
265 views
How can I account for round-off errors in floating-point arithmetic for inverse trig (and sqrt) functions (in C)?
I have a fairly complicated function that takes several double values that represent two vectors in 3-space of the form (magnitude, latitude, longitude) where latitude and longitude are in radians, ...
1
vote
4answers
2k 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:
#include ...
0
votes
4answers
130 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
0answers
11 views
Rounding modes of ldexp when using gcc 4.5.2
Is the double ldexp(double x, int n) correctly rounded?
When the expected result is denormal number I'm getting is not correctly rounded.
For example
x = 0x1.2492492492492p-1, n = -1023
expected ...
0
votes
2answers
227 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, ...
0
votes
2answers
78 views
Linking Math library to a C90 code using GCC
I would like to compile a simple C90 code utilizing math library:
main.c:
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
int main()
{
printf("M_PI: %f\n", M_PI);
}
I ...
0
votes
2answers
137 views
Why doesn't math.h define the reciprocal trig functions?
I find little things like this throughout the C programming language; something that is very easy to provide, has very little chance of breaking old code, and has an obvious way to standardize it. Is ...
0
votes
1answer
108 views
Where is the definition of function nanf() on linux
I am trying to look for definition and declaration of the function nanf() - return 'Not a Number function, which is related to the floating point functionality on Linux gcc compiler environment - ...
0
votes
1answer
125 views
How to refresh the file math.h [closed]
Possible Duplicate:
Why Am I Getting Link Errors When Calling Function in Math.h?
Hello, I have a problem in C (gcc), when I compile a program that includes Math.h and uses functions from ...
0
votes
1answer
188 views
Why does this code sometimes return NaN?
This often returns NAN ("Not A Number") depending on input:
#define PI 3.1415f
GLfloat sineEaseIn(GLfloat ratio) {
return 1.0f-cosf(ratio * (PI / 2.0f));
}
I tried making PI a few digits smaller ...
0
votes
3answers
529 views
Problem with conflict between mysql and math.h
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 been over this for two days and I ...
0
votes
3answers
531 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 it's true that the ...
-1
votes
4answers
78 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
73 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 ...
-1
votes
4answers
737 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 the filesize was ...