mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-02-03 09:44:24 -05:00
11 lines
135 B
Fortran
11 lines
135 B
Fortran
subroutine graycode(dat,n,idir)
|
|
|
|
integer dat(n)
|
|
do i=1,n
|
|
dat(i)=igray(dat(i),idir)
|
|
enddo
|
|
|
|
return
|
|
end subroutine graycode
|
|
|