math.h, a header file of C programming language, declares a set of functions to compute common mathematical operations and transformations.
0
votes
1answer
85 views
Using C math.h to calculate the sin of a number
I'm an absolute beginner to C and I've read a few books but never really played with it. I'm starting to try to apply what I've read with a very simple program that returns the sin of a number. The ...
-4
votes
1answer
55 views
how to use clang compile c file with math.h? [duplicate]
#include <stdio.h>
#include <math.h>
int main()
{
printf("%.81f\n", 1+2*sqrt(3)/(5-0.1));
return 0;
}
output:
/tmp/a4-4oU730.o: In function main':
a4.c:(.text+0x4f): undefined ...
0
votes
1answer
109 views
Dev C, math.h problems
I just installed devcpp, and am attempting to make sure it is working. When I ran into compile errors surrounding math.h. I am using a couple of simple programs that have been compiled and run ...
0
votes
1answer
60 views
Math functions undefined although present in the Borland C++ Builder 6 help under Math unit
I want to use the function Sign() in a Borland C++ Builder 6 application. I cannot however find the correct header file.
When I use this function I get a compiler error saying undefined symbol, Sign.
...
0
votes
0answers
40 views
What to do if tgamma() function is not defined?
I am trying to use tgamma() from the standard library. When I try to compile, I get the error message:
Call to undefined function tgamma
I have the directive #include <cmath>. I use ...
2
votes
1answer
179 views
SIMD math libraries for SSE and AVX
I am looking for SIMD math libraries (preferably open source) for SSE and AVX. I mean for example if I have a AVX register v with 8 float values I want sin(v) to return the sin of all eight values at ...
0
votes
0answers
59 views
Compiling 462.libquantum on Visual Studio 2010
While compiling libquantum for VS10, in lq_complex.h, I have
extern COMPLEX_FLOAT quantum_conj(COMPLEX_FLOAT a);
I get the following errors
And this is my lq_complex.h , also this is the main ...
0
votes
2answers
142 views
math.h pow() function not working correctly?
I was working on a personal project in which I needed to determine all prime powers between 0 and 999. Because I am not particularly good at math, I tired the following ham-fisted bruteforce approach. ...
-4
votes
1answer
81 views
How to solve a logarithm in C porgramming without math.h. Input base, and a number to return “log of number in base is result” [closed]
How to solve a logarithm in C programming without math.h. Input base, and a number to return "log of number in base is result"
1
vote
5answers
99 views
c equavilent to matlab's sind and cosd function
So I am working with some matlab code converting to c code by hand. I am just wondering if there is a c equivalent to the sind and cosd functions I'm seeing in the matlab code. I guess this returns ...
1
vote
1answer
57 views
C++ Windows alternative to lrint?
What is the correct alternative to the C99 lrint function in windows?
#define lrint(x) (floor(x+(x>0) ? 0.5 : -0.5))
/* and if fesetround(0) behavior is required*/
#define lrint(x) ((int)(x))
...
-8
votes
2answers
63 views
1
vote
5answers
230 views
Is there a way to speed up the evaluation of the following expression? [closed]
I have profiled my program and it spends 20% of the CPU time basically evaluating the following expression:
abs(x) > abs(y)
where x,y are double-precision floating point variables.
Is there a ...
2
votes
1answer
123 views
(Solved) Determining Day of the week using Zeller's Congruence in C
I tried writing the code for finding the day of the week for a given date using Zeller's Congruence but I'm not getting the correct output. What's wrong with my code?
#include <stdio.h>
...
0
votes
1answer
119 views
How do I (dynamically) link against math.h functions on Windows?
I'm working on a C++ app which uses the LLVM JIT backend to compile code on the fly. In this JIT-compiled code, I want to be able to call all of the math.h functions, but currently it only works for ...
0
votes
3answers
262 views
C: Undefined reference to floor
I am using Eclipse on Ubuntu to write/compile/run C code.
I am trying to build my project.
Following is the output in the Eclipse console.
22:18:31 **** Build of configuration Debug for project ...
0
votes
2answers
81 views
Compiler says pow is undefined even when I'm linking with -lm, but compiles when
value *= pow(10, 3); // this one compiles
value *= pow(10, aVar); // this one produces this error:
//Number.c:(.text+0x469): undefined reference to `pow'
aVar is an int ...
0
votes
3answers
117 views
Finding the distance between 2 3D points
I'm running into a problem where my square of X is always becoming infinite leading to the resulting distance also being infinite, however I can't see anything wrong with my own maths:
// Claculate ...
0
votes
2answers
93 views
long type max equaling int max error + math.h pow() compile warning: overflow in implicit constant conversion
I'm using the math.h library, and when I run the code below I get g++ compile errors telling me "warning: overflow in implicit constant conversion" for multiple lines. However, if I run the executable ...
1
vote
3answers
210 views
C fabs returning integer
I have a strange problem with fabs function in C code. I have two double values and I want to find the absolute value of their difference using code like this:
a = 87.967498;
b = 218.025015;
if ...
0
votes
1answer
36 views
modf() returns non-zero for negative infinity input
Tried on gcc and MSVC, both on Linux and Windows, remarkably the same result:
modf(+INFINITY) returns exact zero (0x0000000000000000 in binary representation of resulting double, 0x00000000 for ...
1
vote
2answers
59 views
math function chosen by user
I'm writing some code which should use math function (from math.h) chosen by user. I have something like
printf("If you want to use sin, press 's'\n"
"If you want to use cosh, press 'c'\n");
...
41
votes
4answers
1k views
Does calculating Sqrt(x) as x * InvSqrt(x) make any sense in the Doom 3 BFG code?
I browsed through the recently released Doom 3 BFG source code, when I came upon something that does not appear to make any sense. Doom 3 wraps mathematical functions in the idMath class. Some of the ...
-3
votes
2answers
145 views
Using pow(x,y) in large numbers [closed]
I am inputting a number n where 1<=n<=10^5. I need a number of length n. So I use pow(10,n-1) but it doesnt work when n=100000. What is the error ?
EDIT: Its codeforces div2 round 152 problem ...
8
votes
2answers
513 views
Why does math.h define pi, pi/2, 2/pi but not 2*pi? [closed]
This is a really simple question: Why are there predefined constants for pi, pi/2, pi/4, 1/pi and 2/pi but not for 2*pi? Is there a deeper reason behind it?
This question is not about the whole pi vs ...
-1
votes
1answer
197 views
C Matrix Programming [duplicate]
Possible Duplicate:
Recommendations for a small c-based vector and matrix library
I'm trying to write a c program that does some simple matrix operations, like add/subtract/multiply two ...
0
votes
2answers
172 views
undefined reference to a c built in function 'pow' [duplicate]
Possible Duplicate:
pow() isn’t defined
void octal2decimal(char *octal, char *decimal) {
int oct = atoi(octal);
int dec = 0;
int p = 0;
while (oct!=0) {
dec = dec + (oct%10) * ...
0
votes
1answer
207 views
float fmodf(float_x, float_y) function, math.h, c++
hello I was hoping someone could help me with this.
I am using the float fmodf(float_x, float_y) function from math.h.
i am able to code with it properly but I was just wanted to know does anyone ...
3
votes
0answers
176 views
How are sin(x) or cos(x) in math.h implemented? [duplicate]
Possible Duplicate:
How does C compute sin() and other math functions?
I'm curious how sin and cos the are implemented on a low level.
I just had a look inside the math.h and couldn't ...
0
votes
1answer
120 views
precision of argument in pow() of C
Here's a C code;
#include<stdio.h>
#include<math.h>
int main()
{
double n=10.0;
double automatic = pow(10.0,log10(n)-log10(5.0));
printf("%.9lf\n",log10(n)-log10(5.0));
...
0
votes
0answers
418 views
Qt Creator and math.h does not work
I have started a Qt Project with Qt Creator and I want to use some mathematical functions. I have included math.h. But when I want to use a function, I got an error that the function is not declared ...
3
votes
2answers
3k views
expected unqualified-id before string constant
I'm currently writing a C++ application which implements an Oscillator in conjuction with math.h. The code I have should work fine for the application (trying to compile an object file), bu I'm ...
2
votes
2answers
327 views
fmod returns inconsistent value
Ran into an odd bug while trying to play around with some perlin noise functions. All of the sudden I got a off value in the middle of all of my calls. Traced it down to an inconsistant return value ...
1
vote
1answer
449 views
Compiling and Linking KISSFFT
I have a newb problem with compiling and linking the kissfft library 'out of the box'. I've downloaded the kissfft library and extracted it to a test directory. Upon entering the directory and ...
1
vote
3answers
198 views
Storing numbers with higher precision in C
I am writing a program in which I need to store numbers with a very high precision(around 10^-10) and then further use them a parameter( create_bloomfilter ([yet to decide the type] falsePositivity, ...
1
vote
3answers
5k views
pow function in C
I write a C code that have power function that is from math.h library. when I compiled my program, I received an error which is " undefined reference to 'pow' function ", I compile my program using ...
2
votes
2answers
435 views
Math.h library functions in assembly x86? [duplicate]
I tried to convert C code that is written under Linux (fedora 9) to assembly x86 code, however, I have problem in a Math.h functions. The functions in this library such as ceil, floor, log, log10, ...
1
vote
0answers
148 views
Windows DDK with C: modf ok but modff broken?
I'm making a checked winxp x86 build of a DLL with the WDK (v7600.16385.1) on a win7 x64 host. Some build flags are ...
USER_C_FLAGS = /fp:fast
USE_MSVCRT=1
UMTYPE=windows
... my test function (in ...
0
votes
4answers
787 views
math.h linkage with file
I have a small problem, and I have tried everything to test this function, could you please help me? I need to write a C file that is called "mutual_info.c", and it needs a mathematical function. I ...
0
votes
1answer
576 views
Undefined symbols for architecture x86_64 “_min”
I'm having a problem using min() and max() function in my C project. I've imported math.h, but when I compile the file I keep getting the following error (a similar error is displayed even using gcc ...
0
votes
0answers
147 views
Subclassing QDoubleSpinBox with NaN value
I subclassed QDoubleSpinBox in order to make a QDoubleSpinBox that allows the user to enter NaN as valid input. Right now if a user enters "nan" into the spinbox the control is automatically changing ...
0
votes
2answers
351 views
expected initializer before 'extern' when using math.h
The error points me to line 36 of the math.h file, which I haven't messed with. SRK.cpp is the only file that needs the header, but it won't be, so it seemed logical to include it in the header ...
0
votes
2answers
76 views
Some questions about linking the math library
I am programming a c project which must use the pow function defined in math.h.
And when I tried to make the project, gcc gave the following link error:
undefined reference to `pow'.
I know the -lm ...
1
vote
3answers
162 views
making your own pow()
I have a project where we are trying to get the code space down. We have one spot in one file that calls the pow() function from the math library which adds an additional +12k of code to the final ...
-1
votes
1answer
231 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 ...
1
vote
2answers
3k views
pow() from math.h library - How to Apply using functions
So I'm writing a bit of code that needs to raise a function's return value to a certain power. I recently discovered that using the '^' operator for exponentiation is useless because in C++ it is ...
0
votes
2answers
360 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 ...
3
votes
3answers
864 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 ...
2
votes
3answers
218 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 ...
1
vote
1answer
1k 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 ...

