Tagged Questions
The cmath tag has no wiki summary.
16
votes
7answers
2k views
Definitions of sqrt, sin, cos, pow etc. in cmath, C/C++
Are there any definitions of functions like sqrt(), sin(), cos(), tan(), log(), exp() (those from math.h/cmath) available ?
I just wanted to know how do they work.
12
votes
3answers
426 views
Why is std::sin() and std::cos() slower than sin() and cos()?
Test code:
#include <cmath>
#include <cstdio>
const int N = 4096;
const float PI = 3.1415926535897932384626;
float cosine[N][N];
float sine[N][N];
int main() {
printf("a\n");
...
10
votes
1answer
791 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?
9
votes
14answers
1k views
How can I work around the fact that in C++, sin(M_PI) is not 0?
In C++,
const double Pi = 3.14159265;
cout << sin(Pi); // displays: 3.58979e-009
it SHOULD display the number zero
I understand this is because Pi is being ...
4
votes
1answer
243 views
When the C++ standard provides C headers bringing names into the global namespace, does that include overloads?
The final committee draft of the upcoming C++0x standard says:
Every C header, each of which has a
name of the form name.h, behaves as if
each name placed in the standard
library namespace ...
4
votes
3answers
451 views
cos returns wrong values?
I have a strange problem with the standard cos function of cmath/math.h. Apparently under some circumstances it returns a wrong or simply undefined value.
#include <cmath>
#include ...
4
votes
5answers
7k views
Ambiguous overload call to abs(double)
I have the following C++ code:
#include <math.h>
#include <cmath.h> // per http://www.cplusplus.com/reference/clibrary/cmath/abs/
// snip ...
if ( (loan_balance < 0) && ...
3
votes
1answer
48 views
Math interface vs cMath in C++
The interface on my build system MacOS 10.6.3 for the POSIX math library is math.h, however on my target system the name of the interface file is cmath.h. At school we use cmath and I would like to ...
2
votes
6answers
230 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
3answers
760 views
M_PI in VS2010: working in Debug conf but not in Release
In my unmanaged C++ source i have:
#define _USE_MATH_DEFINES
#include <cmath>
and then I use M_PI a couple of times.
Compiling in Debug configuration works flawlessly but in Release it gives:
...
2
votes
1answer
792 views
C++ Use secant method to solve function
I have a school problem but I do not understand what it actually asks. Any of you have an idea what it's really asking for? I don't need code, I just need to understand it.
This is the problem:
...
1
vote
2answers
93 views
Build issue when using <cmath> with android ndk
I have a simple file stlTest2.cpp like this:
#include <jni.h>
#include <cmath>
bool isnan (void);
There is something more complicated in some code I am porting. My question is this. ...
1
vote
4answers
149 views
Incorrect results from C++ math library's trigonometry functions
I'm currently working on a personal project that I've been doing for nearly a year now. I am trying to port it over to a Windows environment, which has succeeded. Because I am trying to get a Windows ...
1
vote
2answers
113 views
problems with cMath and the sin function
Hey so i'm doing some graphics math and inserting what i believe to be a float (i'm pretty sure the ways i manipulate the float beforehand is messing something up somehow...) into the function and ...
1
vote
2answers
930 views
cmath.h and compile errors
I used to work with math.h without any problem. Now, I use an external library which itself has a file called math.h, but which includes < cmath>.
Adding this library to my project (or even ...
1
vote
1answer
681 views
In xcode when including cmath get error: '::acos' has not been declared, etc
I get the following errors when trying to build a small and simple project that includes <cmath> in Xcode:
cmath: '*' has not been declared
'::acos' has not been declared
In file included from ...
1
vote
2answers
1k views
cmath compilation error when compiling old C++ code in VS2010
I've inherited a few C++ files and an accompanying makefile, which I'm trying to bring into VS2010 as a solution. I've created an empty project and added the appropriate C++ and header (.hpp) files ...
1
vote
4answers
183 views
how to do trig functions to data in Windows textboxes
must you convert from strings to double? if so. how?
Are there functions for trig that will accept textbox string data as is?
Is there a way to pull the data from the textbox as a numeric value, not ...
1
vote
2answers
1k views
cmath Errors when using FLTK
For some reason, whenever I add the FLTK directory to my include path, I get a bunch of errors from cmath. I am using GCC version 4.2. Here is a sample program and the build output:
main.cpp
...
0
votes
6answers
83 views
using only certain functions from a library?
i would like to use only certain functions from math.h (WITHOUT including the entire library)
for example, i need to use "sqrt" and "exp", but i have variables named "y1" (and possibly others) which ...
0
votes
0answers
390 views
cmath generates syntax errors on build in Visual studio 2010 (ANSI C)
i've got to do a bit of pure ANSI C and i'm trying to do it in Visual Studio 2010. Problem is; regardless of setting the compiler to pure C and flipping the \Za compiler switch to disable windows ...
0
votes
3answers
106 views
cmath asin() problems
Hey so i managed to locate the problem in some graphics math i am coding, and apparently when i reach this line of code: float test3= asin(test2); where test2= 0.017409846.
to my understanding 'asin' ...
0
votes
1answer
364 views
#include <cmath>
What is wrong with the code snippet below that VS2010 wouldn't compile it?
int m = sqrt( n );
( I am trying to ascertain whether an integer is prime... )
0
votes
4answers
597 views
C++ : complexity of the implementation of exp in cmath and real cost of the cost of a call compared to a floating point operation?
[I globally edited the question to be more "useful" and clear]
Hello all,
I was wondering about the complexity of the implementation of the function exp in cmath.
By complexity, I mean algorithmic ...
0
votes
5answers
1k views
cmath functions generating compiler error
I've written a small program that utilizes the Fast Light Toolkit and for some reason a compiler error is generated when trying to access the functions in the cmath header.
Such as error ::acos has ...
0
votes
7answers
488 views
VC++ compiler and type conversion?
When I moved a program from a Mac to this Windows PC, the VC++ 2008 compiler is giving me errors for passing unsigned ints to the cmath pow() function. As I understand, this function is not overloaded ...