XL Fortran for AIX 8.1

Language Reference

SFTI(M, Y)

Store Floating-point to Integer

The contents of the low order 32-bits of Y are stored without conversion into the word of M.

Parameters

M
must be of type INTEGER(4).

Y
must be of type REAL(8).

Examples

... 
integer*4 :: m 
real*8 :: x 
 
x = z"00000000abcd0001" 
call sfti(m, x) ! m = z"abcd0001" 
..


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]