Posts Tagged ‘casin’

casin, casinf, casinl – complex arc sine
USAGE
#include <complex.h>

double complex casin(double complex z);
float complex casinf(float complex z);
long double complex casinl(long double complex z);

[...]

Thursday, August 27th, 2009 at 00:16 | Comments Off
Categories: c

asin, asinf, asinl – arc sine function
USAGE
#include <math.h>

double asin(double x);
float asinf(float x);
long double asinl(long double x);

Link with -lm.

DESCRIPTION
[...]

Wednesday, August 26th, 2009 at 02:03 | Comments Off
Categories: A
TOP