sincosf

Name

sincosf -- trigonometric functions

Synopsis

#define _GNU_SOURCE
#include <math.h>

void sincosf(float x, float * sin, float * cos);

Description

The sincosf() function shall calculate both the sine and cosine of x. The sine shall be stored in the location referenced by sin, and the cosine in the location referenced by cosine.

Returns

None. See sin() and cos() for possible error conditions.

See Also

cos(), sin(), sincos(), sincosl()