NCEPLIBS-w3emc 2.12.0
Loading...
Searching...
No Matches
w3fi02.f
Go to the documentation of this file.
1C> @file
2C> @brief Transfers array from 16 to 64 bit words.
3C> @author Dennis Keyser @date 1992-06-29
4
5C> Transfers an array of numbers from 16 bit (ibm integer*2)
6C> IBM half-words to default integers.
7C>
8C> Program history log:
9C> - Dennis Keyser 1992-06-29
10C> - Stephen Gilbert 1998-11-17 Removed Cray references.
11C>
12C> @param[in] IN Starting address for array of 16 bit IBM half-words.
13C> @param[in] NUM Number of numbers in 'IN' to transfer.
14C> @param[out] IDEST Starting address for array of output integers.
15C>
16C> @note This is the inverse of library routine w3fi03.
17C>
18C> @author Dennis Keyser @date 1992-06-29
19 SUBROUTINE w3fi02(IN,IDEST,NUM)
20C
21 INTEGER(2) IN(*)
22 INTEGER IDEST(*)
23C
24 SAVE
25C
26C CALL USICTC(IN,1,IDEST,NUM,2)
27 idest(1:num)=in(1:num)
28C
29 RETURN
30 END
subroutine w3fi02(in, idest, num)
Transfers an array of numbers from 16 bit (ibm integer*2) IBM half-words to default integers.
Definition w3fi02.f:20