Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

csin(3) [freebsd man page]

CCOS(3) 						   BSD Library Functions Manual 						   CCOS(3)

NAME
ccos, ccosf, csin, csinf ctan, ctanf -- complex trigonometric functions LIBRARY
Math Library (libm, -lm) SYNOPSIS
#include <complex.h> double complex ccos(double complex z); float complex ccosf(float complex z); double complex csin(double complex z); float complex csinf(float complex z); double complex ctan(double complex z); float complex ctanf(float complex z); DESCRIPTION
The ccos(), csin(), and ctan() functions compute the cosine, sine, and tangent of the complex number z, respectively. The ccosf(), csinf(), and ctanf() functions perform the same operations in float precision. SEE ALSO
cacos(3), ccosh(3), complex(3), cos(3), math(3), sin(3), tan(3) STANDARDS
These functions conform to ISO/IEC 9899:1999 (``ISO C99''). BSD
October 17, 2011 BSD

Check Out this Related Man Page

CSIN(3) 						   BSD Library Functions Manual 						   CSIN(3)

NAME
csin -- complex sine function ccos -- complex cosine function ctan -- complex tangent function SYNOPSIS
#include <complex.h> double complex csin(double complex z); long double complex csinl(long double complex z); float complex csinf(float complex z); double complex ccos(double complex z); long double complex ccosl(long double complex z); float complex ccosf(float complex z); double complex ctan(double complex z); long double complex ctanl(long double complex z); float complex ctanf(float complex z); DESCRIPTION
csin(z) computes the sine of the complex floating-point number z. ccos(z) computes the cosine of the complex floating-point number z. ctan(z) computes the tangent of the complex floating-point number z. NOTES
csin, ccos, and ctan are defined in terms of the complex hyperbolic functions as follows: csin(z) = -i * csinh(i*z), ccos(z) = ccosh(i*z), ctan(z) = -i * ctanh(i*z). SEE ALSO
csinh(3) ccosh(3) ctanh(3) complex(3) STANDARDS
The csin(), ccos(), and ctan() functions conform to ISO/IEC 9899:2011. 4th Berkeley Distribution December 11, 2006 4th Berkeley Distribution
Man Page

2 More Discussions You Might Find Interesting

1. Red Hat

OCSInventory problem

Hello there everyone. I have installed OCSInventory on 46 of my RHEL5 servers. But when the process is running after some time it makes this processes exp: After a ps -ef |grep ocs here is what I get : root 3073 28258 0 15:51 ? 00:00:00 <defunct> root 6459 17165 0... (8 Replies)
Discussion started by: theboogymaster
8 Replies

2. Shell Programming and Scripting

How to find arcsin for a coulmn containg values?

Hello everzone, I have a column of values and i need to find arcsin for evry value in this column. I am very new to shell scripting and would be glad to receive any help regarding this. Also i want them to be saved in the next column. Desired output: # # a arcsin(a) b arcsin(b) c ... (10 Replies)
Discussion started by: dinesh.n
10 Replies