Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

conj(3m) [opensolaris man page]

conj(3M)						  Mathematical Library Functions						  conj(3M)

NAME
conj, conjf, conjl - complex conjugate functions SYNOPSIS
c99 [ flag... ] file... -lm [ library... ] #include <complex.h> double complex conj(double complex z); float complex conjf(float complex z); long double complex conjl(long double complex z); DESCRIPTION
These functions compute the complex conjugate of z, by reversing the sign of its imaginary part. RETURN VALUES
These functions return the complex conjugate value. ERRORS
No errors are defined. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
carg(3M), cimag(3M), complex.h(3HEAD), cproj(3M), creal(3M), attributes(5), standards(5) SunOS 5.11 12 Jul 2006 conj(3M)

Check Out this Related Man Page

conj(3M)						  Mathematical Library Functions						  conj(3M)

NAME
conj, conjf, conjl - complex conjugate functions SYNOPSIS
cc [ flag... ] file... -lm [ library... ] #include <complex.h> double complex conj(double complex z); float complex conjf(float complex z); long double complex conjl(long double complex z); DESCRIPTION
These functions compute the complex conjugate of z, by reversing the sign of its imaginary part. RETURN VALUES
These functions return the complex conjugate value. ERRORS
No errors are defined. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |MT-Safe | +-----------------------------+-----------------------------+ SEE ALSO
carg(3M), cimag(3M), complex.h(3HEAD), cproj(3M), creal(3M), attributes(5), standards(5) SunOS 5.10 1 Sep 2002 conj(3M)
Man Page

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

conjunction two files

I need to your help. I want write a script search for rows in file1 if exist in file2 it will print rows from file2 else it will print rows from file1 with out any duplicate ... (4 Replies)
Discussion started by: kmuqalled
4 Replies

2. Shell Programming and Scripting

how can i conjunct two expression in one line in awk?

hi im trying to conjuct two expresssion , but not getting the exact result i need.. i want to conjuct 1) awk < /etc/passwd 'NR >15' and 2)awk < /etc/passwd '!/8niaz/' how will i execute , so it will start printing from the 16th line and will omit the lines which include '8niaz'. ... (1 Reply)
Discussion started by: niyas_gk
1 Replies

3. Shell Programming and Scripting

Missing conjunction

Hi Gurus, I have prepared a script to find the log file based on a date range defined in one of the environment files, archive the logs files and move them to a particular directory. Below is the script: . /home/.profile . /home/.inf_env logfile=$scripts_path/Logs/file_archive1.log... (17 Replies)
Discussion started by: svajhala
17 Replies

4. Shell Programming and Scripting

How to go about Using a "Validate an IP script" in conjunction with Logfile?

Hi, so I have been trying to write a shell script to go through a log file and through that, generate another file with all the Valid IP addresses it finds. So there's the complication that there could be incomplete or invalid data which would disqualify it from making my "Valid IPs" file I need... (3 Replies)
Discussion started by: shellcow
3 Replies

5. Shell Programming and Scripting

Problem with date in conjunction with cut?

I got rather bored so i decided to create a script that creates a countdown, and shows hours:minutes:seconds till that time. It works fine until the seconds of the actual time reaches 8, then it tries to use it to work out the difference as in "SECONDDIFF=$" Here's my code where I get the... (12 Replies)
Discussion started by: DuskFall
12 Replies

6. UNIX for Dummies Questions & Answers

Nohup in conjunction with time

hi, if I exectute "nohup time ls -1" I get the following output $ nohup time ls -1 file_1 file_2 file_3 file_4 file_5 0.000u 0.001s 0:00.00 0.0% 0+0k 0+0io 0pf+0w This is all OK. But if I want to capture this whole output in to a text file I would want to use something like ... (1 Reply)
Discussion started by: BearCheese
1 Replies

7. Shell Programming and Scripting

Find command "mssing conjuction error"

Hi , I am executing command find /LOG_RECV -type f -mtime +100 ! -name flag_\* \ ! -path "/LOG_RECV/CPCN/DOC/*" \ ! -path "/LOG_RECV/PRIS/DOC/*" \ ! -path "/LOG_RECV/EDI/R000??/EDI*/" \ ... (3 Replies)
Discussion started by: Jcpratap
3 Replies

8. Shell Programming and Scripting

Creating a master file of conjugated verbs by concatenating root and inflection from separate files

Excuses for the long descriptive title. I am working with Sindhi and developing a database of all verbal conjugations in that language. I have generated 2 files: Verbs.dic contains all the verbs, one verb per line Inflections.dic contains the verbal conjugations which need to be appended to... (6 Replies)
Discussion started by: gimley
6 Replies