Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

conj(3) [v7 man page]

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

NAME
conj, conjf, conjl - calculate the complex conjugate SYNOPSIS
#include <complex.h> double complex conj(double complex z); float complex conjf(float complex z); long double complex conjl(long double complex z); Link with -lm. DESCRIPTION
These functions return the complex conjugate value of z. That is the value obtained by changing the sign of the imaginary part. One has: cabs(z) = csqrt(z * conj(z)) VERSIONS
These functions first appeared in glibc in version 2.1. ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). +-------------------------+---------------+---------+ |Interface | Attribute | Value | +-------------------------+---------------+---------+ |conj(), conjf(), conjl() | Thread safety | MT-Safe | +-------------------------+---------------+---------+ CONFORMING TO
C99, POSIX.1-2001, POSIX.1-2008. SEE ALSO
cabs(3), csqrt(3), complex(7) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. 2015-04-19 CONJ(3)

Check Out this Related Man Page

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

NAME
conj, conjf, conjl - calculate the complex conjugate SYNOPSIS
#include <complex.h> double complex conj(double complex z); float complex conjf(float complex z); long double complex conjl(long double complex z); Link with -lm. DESCRIPTION
These functions return the complex conjugate value of z. That is the value obtained by changing the sign of the imaginary part. One has: cabs(z) = csqrt(z * conj(z)) VERSIONS
These functions first appeared in glibc in version 2.1. ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). +-------------------------+---------------+---------+ |Interface | Attribute | Value | +-------------------------+---------------+---------+ |conj(), conjf(), conjl() | Thread safety | MT-Safe | +-------------------------+---------------+---------+ CONFORMING TO
C99, POSIX.1-2001, POSIX.1-2008. SEE ALSO
cabs(3), csqrt(3), complex(7) COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. 2015-04-19 CONJ(3)
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