Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

dlaisnan.f(3) [centos man page]

dlaisnan.f(3)							      LAPACK							     dlaisnan.f(3)

NAME
dlaisnan.f - SYNOPSIS
Functions/Subroutines LOGICAL function dlaisnan (DIN1, DIN2) DLAISNAN tests input for NaN by comparing two arguments for inequality. Function/Subroutine Documentation LOGICAL function dlaisnan (double precisionDIN1, double precisionDIN2) DLAISNAN tests input for NaN by comparing two arguments for inequality. Purpose: This routine is not for general use. It exists solely to avoid over-optimization in DISNAN. DLAISNAN checks for NaNs by comparing its two arguments for inequality. NaN is the only floating-point value where NaN != NaN returns .TRUE. To check for NaNs, pass the same variable as both arguments. A compiler must assume that the two arguments are not the same variable, and the test will not be optimized away. Interprocedural or whole-program optimization may delete this test. The ISNAN functions will be replaced by the correct Fortran 03 intrinsic once the intrinsic is widely available. Parameters: DIN1 DIN1 is DOUBLE PRECISION DIN2 DIN2 is DOUBLE PRECISION Two numbers to compare for inequality. Author: Univ. of Tennessee Univ. of California Berkeley Univ. of Colorado Denver NAG Ltd. Date: September 2012 Definition at line 75 of file dlaisnan.f. Author Generated automatically by Doxygen for LAPACK from the source code. Version 3.4.2 Tue Sep 25 2012 dlaisnan.f(3)

Check Out this Related Man Page

dlartg.f(3)							      LAPACK							       dlartg.f(3)

NAME
dlartg.f - SYNOPSIS
Functions/Subroutines subroutine dlartg (F, G, CS, SN, R) DLARTG generates a plane rotation with real cosine and real sine. Function/Subroutine Documentation subroutine dlartg (double precisionF, double precisionG, double precisionCS, double precisionSN, double precisionR) DLARTG generates a plane rotation with real cosine and real sine. Purpose: DLARTG generate a plane rotation so that [ CS SN ] . [ F ] = [ R ] where CS**2 + SN**2 = 1. [ -SN CS ] [ G ] [ 0 ] This is a slower, more accurate version of the BLAS1 routine DROTG, with the following other differences: F and G are unchanged on return. If G=0, then CS=1 and SN=0. If F=0 and (G .ne. 0), then CS=0 and SN=1 without doing any floating point operations (saves work in DBDSQR when there are zeros on the diagonal). If F exceeds G in magnitude, CS will be positive. Parameters: F F is DOUBLE PRECISION The first component of vector to be rotated. G G is DOUBLE PRECISION The second component of vector to be rotated. CS CS is DOUBLE PRECISION The cosine of the rotation. SN SN is DOUBLE PRECISION The sine of the rotation. R R is DOUBLE PRECISION The nonzero component of the rotated vector. This version has a few statements commented out for thread safety (machine parameters are computed on each entry). 10 feb 03, SJH. Author: Univ. of Tennessee Univ. of California Berkeley Univ. of Colorado Denver NAG Ltd. Date: September 2012 Definition at line 98 of file dlartg.f. Author Generated automatically by Doxygen for LAPACK from the source code. Version 3.4.2 Tue Sep 25 2012 dlartg.f(3)
Man Page

11 More Discussions You Might Find Interesting

1. Programming

comparing dates

hi is there a c function in linux for comparing dates. thanx in advance. svh (2 Replies)
Discussion started by: svh
2 Replies

2. Shell Programming and Scripting

Problem cutting & comparing values

Hi guys I am having some problem cutting and comparing values.I got an INI file which is has some values and ranges mapping to error and warning codes eg criticalerror:69,20,1to9 warningmsg:101,10to19 So taking the scenrio where i have a control script that execute a.ksh, when a.ksh... (6 Replies)
Discussion started by: wilsontan
6 Replies

3. UNIX for Dummies Questions & Answers

comparing variables

I have searched and found a few threads that have dealt with this, but the examples I've tried haven't seemed to help. I am monitoring our database log for high checkpoints. I can parse out the checkpoint value which can be anywhere from zero into a 3 digit number. I set a variable to be the... (3 Replies)
Discussion started by: MizzGail
3 Replies

4. Shell Programming and Scripting

comparing the name of the file

hi, i have to check the name of file in other directory which contains number of files to check for duplicte file name avaliable or not. thanks (2 Replies)
Discussion started by: ravi214u
2 Replies

5. Shell Programming and Scripting

comparing files

i have two file e.g cmp1 and cmp2 cmp1 has abcdef and cmp2 has abcdefghijkl cmp1 has: a b c d e f ========= cm2 has: a b c d e f g h (4 Replies)
Discussion started by: Aditya.Gurgaon
4 Replies

6. Shell Programming and Scripting

comparing values

i have two file and i am comparing both.. in cmp1 ,the content is : the nu of file is : <some integer value> in cmp2 ,the content is : the nu of file is : so want a script which will take value (2) when cmp1 is compared with cmp2.. i mean cmp cmp1 cmp2 the the output will be he nu of... (1 Reply)
Discussion started by: Aditya.Gurgaon
1 Replies

7. Shell Programming and Scripting

comparing with numbers.

How to compare a variable with a value like 00:00:10 ? Thanks (4 Replies)
Discussion started by: nagendramv
4 Replies

8. Shell Programming and Scripting

comparing users input to a file in another directory?

how would i go about comparing a users input to a file which is in another directory? (2 Replies)
Discussion started by: gangsta
2 Replies

9. Shell Programming and Scripting

comparing variables to date as string

I have a file $ cat myfile A 02/16/2012 B 02/19/2012 C 02/20/2012 D 02/17/2012 E 02/16/2012 My simple script > cat myscript.sh mydate="02/16/2012" awk ' ($2~/$mydate/) {print $1}' < myfile but I got no output! and when I try $2~/'$mydate'/ I got: The error context is (2 Replies)
Discussion started by: Sara_84
2 Replies

10. UNIX for Dummies Questions & Answers

error in if condition

Hi All, I need to compare the header of the input files which can be comma demilited, tild(~) or Pipr(|) seperated file. I am comparing the file header by taking 1st row and comparing it with input row: Below is the actual code:(ksh script) if then echo $dat >>... (4 Replies)
Discussion started by: abhi_123
4 Replies

11. Shell Programming and Scripting

Extracting and comparing values

I was trying to extract value of g1 and p1 only inside the tags where t1 is "Reading C (bytes)" and comparing them to make sure p1 is always less than g1. Here is the Json file I'm using - File:- { "g1" : 1482568, "n1" : "v_4", "p1" : 0, "s1" : "RC", "t1" : "LM", } { "g1" :... (3 Replies)
Discussion started by: Mannu2525
3 Replies