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