Tagged Questions
37
votes
10answers
4k 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 ...
3
votes
3answers
97 views
Turbo C compiler issue, sqrt() function not working with variable arguments
I searched the question similar to my problem Similar problem. But my problem is when using Turbo C compiler v3.0. Should I have to do some additional work for math.h file? please help.
int main ...
3
votes
1answer
255 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
175 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
632 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
5answers
455 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
243 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
606 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 ...
2
votes
3answers
82 views
Understanding C Header Syntax
I'm new to C. I was traveling through math.h, looking for its mathematical algorithms, but encountered only this kind of lines:
_CRTIMP double __cdecl sin (double);
_CRTIMP double __cdecl cos ...
2
votes
3answers
1k 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
273 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
280 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
41 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
202 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
2answers
196 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
278 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, ...
0
votes
2answers
269 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
145 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
127 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 ...
-1
votes
1answer
94 views
Including files in C
I want to make a simple function involving sqrt(), floor() and pow(). So, I included <math.h>. When I try to use my function, my program says that sqrt() and floor() do not exist. I've triple ...