|
|
f90/ieee_binary_scale(3) -- Returns y multiplied by 2**n
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
f90/ieee_class(3) -- Returns the class to which x belongs
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
f90/ieee_copy_sign(3) -- Returns x with the sign of y
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
f90/ieee_exponent(3) -- Returns the unbiased exponent of x
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
f90/ieee_finite(3) -- Tests for x being greater than negative infinity and less than positive infinity.
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
f90/ieee_int(3) -- Converts x to an integral value
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
f90/ieee_is_nan(3) -- Tests for x being a NaN
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
f90/ieee_next_after(3) -- Returns the next representable neighbor of x in the direction toward y
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
f90/ieee_real(3) -- Converts x to a real value
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
f90/ieee_remainder(3) -- Returns the remainder of x divided by y
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
f90/ieee_unordered(3) -- Tests for x or y being a NaN
|
|
UNICOS/mk and IRIX systems CRAY T90 systems that support IEEE floating-point arithmetic |
|
f90/ieor(3) -- FORTRAN bitwise boolean functions
|
|
bool is the general name for the bit field manipulation intrinsic functions and subroutines from the FORTRAN Military Standard (MIL-STD1753). and, or and xor return the value of the binary operations on their arguments. not is a unary operator returning the one's complement of its argument. ior, iand, not, ieor - return the same results as and, or, not, and xor. lshift and rshift return the value of the first argument shifted left or right, respectively, the number of times specified by the sec... |
|
Tcl/if(3) -- Execute scripts conditionally
|
|
The if command evaluates expr1 as an expression (in the same way that expr evaluates its argument). The value of the expression must be a boolean (a numeric value, where 0 is false and anything is true, or a | string value such as true or yes for true and false or no for false); if it is true then body1 is executed by passing it to the Tcl interpreter. Otherwise expr2 is evaluated as an expression and if it is true then body2 is executed, and so on. If none of the expressions evaluates to true t... |