Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

creal(3m) [hpux man page]

creal(3M)																 creal(3M)

NAME
creal(), crealf(), creall(), crealw(), crealq() - the real part of a complex value SYNOPSIS
DESCRIPTION
These functions are available only for Integrity servers. returns the real part of z. is a version of it takes a argument and returns a result. is a version of it takes a argument and returns a result. is an version of it takes an argument and returns an result. is equivalent to on HP-UX systems. These functions raise no exceptions. USAGE
To use these functions, compile with the default option. To use compile with the option. Make sure your program includes Link in the math library by specifying on the compiler or linker command line. ERRORS
No errors are defined. SEE ALSO
cimag(3M), complex(5). STANDARDS CONFORMANCE
: ISO/IEC C99 (including Annex G, ``IEC 60559-compatible complex arithmetic'') HP Integrity Server Only creal(3M)

Check Out this Related Man Page

cproj(3M)																 cproj(3M)

NAME
cproj(), cprojf(), cprojl(), cprojw(), cprojq() - functions that project all infinities onto the one on the positive real axis SYNOPSIS
DESCRIPTION
These functions are available only for Integrity servers. returns its argument z, except if the argument is a complex infinity (even if it is a complex infinity which has one infinite part and one NaN part), then returns a positive infinity on the real axis, with imaginary part z It is intended as an aide for modeling the Riemann sphere. is a version of it takes a argument and returns a result. is a version of it takes a argument and returns a result. is an version of it takes an argument and returns an result. is equivalent to on HP-UX systems. These functions raise no exceptions. USAGE
To use these functions, compile with the default option. To use compile with the option. Make sure your program includes Link in the math library by specifying on the compiler or linker command line. ERRORS
No errors are defined. SEE ALSO
creal(3M), cimag(3M), complex(5). STANDARDS CONFORMANCE
: ISO/IEC C99 (including Annex G, ``IEC 60559-compatible complex arithmetic'') HP Integrity Server Only cproj(3M)
Man Page

6 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Help with an 'easy' script

Hello guys, I need some help to solve a little problem that I have here: I have a big file with almost 100.000 lines of data, here is an example of line: 100099C01101C00000000059399489283CREMOVISTAR_TX 010001C00000000000099069799MOVISTAR_Tx ... (7 Replies)
Discussion started by: lestat_ecuador
7 Replies

2. UNIX for Dummies Questions & Answers

Help with an 'easy' script

Hello guys, Forgive me if I duplicate the post but i think i make a mistake choosing the correct forum. I need some help to solve a little problem, I have a big file with almost 100.000 lines of data, here is an example of line: 100099C01101C00000000059399489283CREMOVISTAR_TX ... (3 Replies)
Discussion started by: lestat_ecuador
3 Replies

3. Shell Programming and Scripting

replace space for enter

i have to print in a html file directories like this /home/user /home/user/dir but the problem is that when i us this comand listado=`find $direcreal -type f -print` i get this /home/user /home/user/dir1 i try with sed to replace the space with an enter mostrarlistado=`echo "$listado"... (9 Replies)
Discussion started by: pc03
9 Replies

4. Shell Programming and Scripting

Help with simple IF statements

Hi im new to unix shell scripting but not new to codeing itself. Anyways im making a auto .conf for an eggdropbot and need an If statment. read -p 'Bot Nickname:' ecnick echo Your Bots Nick Is $ecnick What i want is for if nothing is entered it will do "read -p 'Bot Nickname:' ecnick"... (7 Replies)
Discussion started by: Gemster
7 Replies

5. Shell Programming and Scripting

i think i need functions ?

Hi, im making a little script but need some help Code i have so far is read -p 'Bot Nickname:' ecnick read -p 'Bot Username:' ecusername read -p 'Bot Realname:' ecrealname read -p 'Your Email:' ecemail echo '' echo Your bots nickname is set to $ecnick echo Your bots username is set to... (2 Replies)
Discussion started by: Gemster
2 Replies

6. Shell Programming and Scripting

Perl:: mass replacement of converting C code formats to tgmath.h

hello, i have a lot of C old code I'm updating to C11 with tgmath.h for generic math. the old code has very specific types, real and complex, like cabsl, csinhl, etc usually for simple bulk replacements i would do something simple like this perl -pi -e 's/cosl/cos/g' *.c the reference... (0 Replies)
Discussion started by: f77hack
0 Replies