math.h trig functions questions (and some forgotten high school math)

M

Mark Healey

Do the trig functions in math.h work in degrees, radians or what? For
some reason it doesn't say which in "man math.h"

IIRC the arctan of a slope gives the angle. So, shouldn't atanf((float)1)
return 45 or .7something (degrees or radians) instead of some negative
number?
 
C

Chris McDonald

Mark Healey said:
Do the trig functions in math.h work in degrees, radians or what? For
some reason it doesn't say which in "man math.h"
IIRC the arctan of a slope gives the angle. So, shouldn't atanf((float)1)
return 45 or .7something (degrees or radians) instead of some negative
number?


If on a Unix/Linux system - man 3 sin
 
J

Jack Klein

Do the trig functions in math.h work in degrees, radians or what? For
some reason it doesn't say which in "man math.h"

IIRC the arctan of a slope gives the angle. So, shouldn't atanf((float)1)
return 45 or .7something (degrees or radians) instead of some negative
number?

Doesn't your C reference book tell you? All C trigonometric functions
work in radians. If you want to work in degrees, you need to provide
functions or macros to do the conversions back and forth.
 
K

Keith Thompson

Mark Healey said:
Do the trig functions in math.h work in degrees, radians or what? For
some reason it doesn't say which in "man math.h"

IIRC the arctan of a slope gives the angle. So, shouldn't atanf((float)1)
return 45 or .7something (degrees or radians) instead of some negative
number?

Some negative number?

This program:

#include <stdio.h>
#include <math.h>
int main(void)
{
printf("atanf((float)1.0) = %f\n", atanf((float)1.0));
return 0;
}

gives me:

atanf((float)1.0) = 0.785398

Did you remember the "#include <math.h>"? Did you make sure to link
in the math library (on a Unix-like system, you might need a "-lm"
option).
 
J

Joe Smith

Keith Thompson said:
Some negative number?

This program:

#include <stdio.h>
#include <math.h>
int main(void)
{
printf("atanf((float)1.0) = %f\n", atanf((float)1.0));
return 0;
}

gives me:

atanf((float)1.0) = 0.785398

Did you remember the "#include <math.h>"? Did you make sure to link
in the math library (on a Unix-like system, you might need a "-lm"
option).

And would atanf be in there, in particular one that accepts a float as
opposed to double? joe
 
K

Keith Thompson

Joe Smith said:
And would atanf be in there, in particular one that accepts a float as
opposed to double? joe

Possibly not, since atanf was added in C99 -- but if atanf weren't in
the library, that wouldn't explain the OP's result of "some negative
number".
 
J

Joe Smith

Keith Thompson said:
Possibly not, since atanf was added in C99 -- but if atanf weren't in
the library, that wouldn't explain the OP's result of "some negative
number".
I'm surprised that my implementation, circa ten years old, has it. joe

#ifdef _M_MRX000

/* MIPS fast prototypes for float */
/* ANSI C, 4.5 Mathematics */

/* 4.5.2 Trigonometric functions */

_CRTIMP float __cdecl acosf( float );
_CRTIMP float __cdecl asinf( float );
_CRTIMP float __cdecl atanf( float );
_CRTIMP float __cdecl atan2f( float , float );
_CRTIMP float __cdecl cosf( float );
_CRTIMP float __cdecl sinf( float );
_CRTIMP float __cdecl tanf( float );
 
T

Tim Prince

Joe said:
I'm surprised that my implementation, circa ten years old, has it. joe

#ifdef _M_MRX000

/* MIPS fast prototypes for float */
/* ANSI C, 4.5 Mathematics */

/* 4.5.2 Trigonometric functions */

_CRTIMP float __cdecl acosf( float );
_CRTIMP float __cdecl asinf( float );
_CRTIMP float __cdecl atanf( float );
_CRTIMP float __cdecl atan2f( float , float );
_CRTIMP float __cdecl cosf( float );
_CRTIMP float __cdecl sinf( float );
_CRTIMP float __cdecl tanf( float );
The math functions for float data type were reserved and made optional
in C89, and mandatory in C99. This seems to have produced some
confusion as to whether restricting a compiler to C89 mode, (gcc
default), may suppress the float functions, or break them, as in some
MSVC versions. Clearly, the provision for them in C89 was produced by
strong demand and intention of certain vendors to provide them.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,576
Members
45,054
Latest member
LucyCarper

Latest Threads

Top