Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

cerf(3) [linux man page]

CERF(3) 						     Linux Programmer's Manual							   CERF(3)

NAME
cerf, cerff, cerfl, cerfc, cerfcf, cerfcl - complex error function SYNOPSIS
#include <complex.h> double complex cerf(double complex z); float complex cerff(float complex z); long double complex cerfl(long double complex z); double complex cerfc(double complex z); float complex cerfcf(float complex z); long double complex cerfcl(long double complex z); Link with -lm. DESCRIPTION
The (unimplemented) function cerf() is the complex version of the error function. erf(z) = 2/sqrt(pi) * integral from 0 to z of exp(-t*t) dt. The function cerfc() is defined as cerfc(z) = 1-cerf(z). CONFORMING TO
The function names are reserved for future use in C99. AVAILABILITY
Not yet in glibc, as at version 2.12. SEE ALSO
erf(3), complex(7) COLOPHON
This page is part of release 3.27 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. 2010-09-12 CERF(3)

Check Out this Related Man Page

CLOG2(3)						     Linux Programmer's Manual							  CLOG2(3)

NAME
clog2, clog2f, clog2l - base-2 logarithm of a complex number SYNOPSIS
#include <complex.h> double complex clog2(double complex z); float complex clog2f(float complex z); long double complex clog2l(long double complex z); DESCRIPTION
The call clog2(z) is equivalent to clog(z)/log(2). The other functions perform the same task for float and long double. Note that z close to zero will cause an overflow. CONFORMING TO
These function names are reserved for future use in C99. AVAILABILITY
Not yet in glibc, as at version 2.17. SEE ALSO
cabs(3), cexp(3), clog(3), clog10(3), complex(7) COLOPHON
This page is part of release 3.53 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. 2013-07-23 CLOG2(3)
Man Page

8 More Discussions You Might Find Interesting

1. Solaris

how can I change user name and password , of account ?

passwd only changes the password but i need to change the user name tnx (5 Replies)
Discussion started by: umen
5 Replies

2. Shell Programming and Scripting

grep sorting/formatting

Hi, I currently have many log files for different webpages inside the folder /log/. The program allows the user to enter a month and then the grep function searches for it, the command i used is below: grep -c "$month" ./log/*.log This works and i can ascertain the number of matches, but I... (10 Replies)
Discussion started by: Jaken
10 Replies

3. UNIX for Dummies Questions & Answers

Resources for preparing exam certification

I had install Sun Solaris 10 in my virtual machine. Anyhow I still very limitation knowledge how to operate it. Would like to search for help somemore could assist me how could I get the resources by free for me to learn and prepare myself for sitting the Sun cerfitication exam? Please help and... (3 Replies)
Discussion started by: jimmyysk
3 Replies

4. Shell Programming and Scripting

Cut determinate values amb subst for ;

Hello I have a output file that contains the next info: host_name LET-234-WDFD-2 address 10.11.0.62 host_name XWERWE-234-WEDF-EMEEH-GIDF-3 address 10.11.32.48 host_name DFG-745-WE-EMEEEH-GIDF-4 address 10.11.32.176 host_name ... (6 Replies)
Discussion started by: capilla
6 Replies

5. Fedora

Concatenate Numerous Files

Hey! I wanted to find a text version of the Bible for purposes of grepping. The only files I could find, (in the translation I wanted), were Old Testament.txt and New Testament.txt. I thought, "fine, I'll just concatenate those two, no problemo." But when I unpacked them, turns out they had each... (22 Replies)
Discussion started by: sudon't
22 Replies

6. Web Development

Random - Any help decoding obfuscated code?

I have this following file and I would quite like to get it decoded - any help / advice is appreciated. I would like to know how to decrypt it, however if someone is able to do it for me I would be equally grateful. <?php //Obfuscation provided by FOPO - Free Online PHP Obfuscator v1.2:... (6 Replies)
Discussion started by: mcclunyboy
6 Replies

7. Shell Programming and Scripting

Running q-shell commands( on IBM-i Series) from cygwin terminal (on windows)

I have cygwin installed on windows server and when I do echo $SHELL the output is /bin/bash I have created a ssh tunnel from this windows server through cygwin to ibm -i series which is running Q-shell. I am trying to invoke a utility wsadmin (used for scripting) on ibm-i from the... (12 Replies)
Discussion started by: gaurav99
12 Replies

8. Shell Programming and Scripting

Count delimiter(~|*) each row in a file and return 1 or 0

Hi I want to check delimiter in file. Delimiter in my file is ~|* sample of file : ABC~|*edgf~|*T1J333~|*20121130 ABC~|*sdaf~|*T1J333~|*20121130 ABC~|*fsdg~|*T1J333~|*20121130 ABC~|*dfsg~|*T1J333~|*20121130 in this i want to count number delimiter occur is 4 in each row if count is... (21 Replies)
Discussion started by: MOHANP12
21 Replies