The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
270 views

What is 1LL or 2LL in C and C++?

I was looking at some of the solutions in Google Code Jam and some people used this things that I had never seen before. For example, 2LL*r+1LL What does 2LL and 1LL mean? Their includes look like ...
0
votes
0answers
36 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 ...
0
votes
3answers
69 views

operator precedence with complex numbers

This should be self-explanatory >>> (1+2j).real #Normal Usage 1.0 >>> (1+2j).imag #Normal Usage 2.0 >>> 1+2j.real #Normal Usage 1.0 >>> 1+2j.imag #Flips Out ...
1
vote
2answers
29 views

Status of cerf, cerfc, ctgamma and clgamma functions?

If we look to the draft of C11, the following names were reserved : 7.31 Future library directions The following names are grouped under individual headers for convenience. All external names ...
4
votes
1answer
210 views

constexpr replacements for math constants like M_PI

Are there any C++11 constexpr constants which can be used instead of the constant macros from <cmath>, i.e. constants like M_PI and friends? Or lacking that, any global const values which ...
3
votes
1answer
93 views

How come cmath does not use templates and/or overloads

Many of the new functions brought in C++11 by TR1 have ugly C-like signatures. For instance, quoting Boost's TR1's documentation ...
3
votes
2answers
445 views

std::isfinite on MSVC

The C++11 and C11 standard define the std::isfinite function. Visual Studio 2012 doesn't seem to provide it as part of the cmath or math.h, but has amp_math.h which seems to provide this function. ...
-1
votes
1answer
108 views

Rounding error of std::cbrt?

I wonder if the following should be reported as a bug in gcc implementation of standard library. For all unsigned integers i, if we compare int(std::sqrt(i)) to the actual square root of the integer, ...
1
vote
1answer
162 views

python scipy leastsq fit with complex numbers

I have a data set of complex numbers, and I'd like to be able to find parameters that best fit the data. Can you fit data in complex numbers using leastsq as implemented by scipy in python? For ...
0
votes
0answers
146 views

Cabal install of haskell package error on windows 7 [closed]

I'm new to Haskell and try to install the package cmath using cabal. I run the following: cabal update cabal install cabal-install to get latest versions. Then I run cabal install cmath which ...
4
votes
1answer
214 views

GCC C++ pow accuracy

So i was in a computing contest and i noticed a weird bug. pow(26,2) would always return 675, and sometimes 674? even though correct answer is 676. These sort of errors also occur with pow(26,3), ...
0
votes
3answers
183 views

unable to use square() function c++ [closed]

I'm new to C++ and I'm using the book "Programming Principles and Practice Using C++" by Bjarne Stroustrup (I will use this book in a future school course). The code samples in this book make use of ...
0
votes
0answers
53 views

std exp of (complex<double> * double ) doesn't work

double s=10.0; complex<double> ii = (0.0,1.0); cout << ii*s << " " << exp(ii*s) <<"\n"; gives (10,0) (22026.5,0) but the second number should be less than ...
0
votes
3answers
105 views

cant figure out how to always subtract smaller num from larger

i have the whole program except for the part where it always subtracts the smaller number from the larger number. I've been trying to find it but i couldn't find anything to help me with it. that's ...
0
votes
1answer
160 views

Why am I getting hundreds of syntax errors from cmath.h? [closed]

I'm doing a project in c++ using OpenGL and keep getting hit with hundreds of syntax errors from cmath.h. The main puzzle is that I'm not even refering to or including cmath at all. I'm using math.h ...
2
votes
1answer
77 views

Is there a Matlab equivalent to Python's cmath.rect?

Is there a Matlab equivalent to Pythons's cmath.rect(r, phi) that returns the complex number x with polar coordinates r and phi without resorting to x = r * complex( cos(phi), sin(phi) ); ?
2
votes
2answers
150 views

Understanding floating point variables and operators in c++ (Also a possible book error)

I am working through a beginning C++ class and my book(Starting Out with C++ Early Objects 7th edition) has a very poor example of how to check the value of a floating point variable. The book ...
2
votes
4answers
309 views

Using pow() gives errors

Please have a look at the following code #include <iostream> #include <iomanip> #include <cmath> using namespace std; int main() { //int side1 = 0; //int side2 = 0; ...
0
votes
3answers
132 views

In C++, why don't I have to include anything to use the sqrt() function?

I am just learning C++. Compiling with g++ version 3.2.3, "g++ hworld.cpp": double sqrt(double); int main(){ double x = sqrt(1515.15); return 0; } That compiles fine, but if we were to ...
1
vote
3answers
215 views

Is the floating point implementation of exp() function equivalent to a truncated Taylor series expansion?

Is the floating point implementation of exp() function in cmath equivalent to a truncated Taylor series expansion of a very high order? One possible source of the error we should keep in mind is the ...
0
votes
1answer
88 views

I need to round an output and show xxx.0 for an assignment in C++

Can I get some help with my assignment? I had to create a BMI Calculator that takes in test cases and produce a bmi with one decimal place. My code passes most cases but one, where feet = 4, inches = ...
1
vote
5answers
905 views

Rounding positive/negative numbers to nearest “whole” number in python

I'm trying to round numbers derived from cmath's divide function to a "whole" number, the results often being negative due to the nature of the program. Example code: strength = input("Input ...
0
votes
1answer
643 views

C compile time cmath error

I have been stuck on this for a long time and for some reason my C code is not compiling. It produces a lot of cmath errors Since It would have taken a lot of space to put my code and error ...
0
votes
1answer
427 views

finding nth root of a number by using divide and conquer method

I need help on how to get nth root of some number. User enters number n and number he wants root of. I need to solve this without cmath lib and with divide and conquer method. Here's my code that ...
9
votes
3answers
711 views

In C, tan(30) gives me a negative value! Why?

I observe that my tan(float) function from the cmath library is returning a negative value. The following piece of code, when run : #include <cmath> .... // some calculation here ...
7
votes
2answers
666 views

Why are some functions in <cmath> not in the std namespace?

I am developing a project which works with multiple arithmetic types. So I made a header, where the minimal requirements for a user defined arithmetic type are defined: user_defined_arithmetic.h : ...
5
votes
1answer
189 views

Boost Numeric Constants Pros

What do I gain (I guess in terms of type safety, performance and accuracy) by using Boost Numeric Constants, such as pi<T>, defined in <boost/math/constants/constants.hpp> instead of ...
2
votes
6answers
281 views

Defining a constant variable pi in a library

So I'm writing a library and I want to define a constant that will have the value of pi. I was thinking of defining a static const float pi = 3.14; in a pi.h file. However, I'm almost sure that's not ...
0
votes
1answer
171 views

Is there a better way to find the log of any number without the C Standard Library?

I've to create a program that calculates the log of any number and the log of any number to any base without using cmath. I've succeeded in creating a prototype program using the power series equation ...
1
vote
1answer
171 views

Transform a lot of symbolic expression from x^2 or x^3 to pow(x,n)

I have a lot of symbolic expressions with the power symbol which I want to copy in a C++ program. However they have the power symbol ^ which is not used in C. Any advice for making the change fast? ...
1
vote
1answer
252 views

Missing templates from `<cmath>` header in VS 2010

I just noticed that the templates dictated by the c++11 Standard [26.8 c.math] for the <cmath> header are missing from the version of the c++ standard library shipped with visual studio 2010. ...
4
votes
2answers
790 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. ...
4
votes
1answer
945 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 ...
1
vote
4answers
495 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
6answers
316 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 ...
1
vote
0answers
3k 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 ...
14
votes
3answers
1k 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"); ...
3
votes
6answers
1k 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, ...
0
votes
3answers
216 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' ...
1
vote
2answers
359 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 ...
0
votes
1answer
1k 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... )
26
votes
7answers
5k views

Definitions of sqrt, sin, cos, pow etc. in cmath

Are there any definitions of functions like sqrt(), sin(), cos(), tan(), log(), exp() (these from math.h/cmath) available ? I just wanted to know how do they work.
5
votes
1answer
424 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
3k 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: ...
3
votes
3answers
3k 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 ...
0
votes
4answers
1k 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 ...
2
votes
1answer
1k 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 ...
2
votes
1answer
2k 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
4k 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 ...
20
votes
2answers
5k 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?

1 2