mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-10-31 23:57:10 -04:00
10 lines
139 B
Fortran
10 lines
139 B
Fortran
|
subroutine graycode(ia,n,idir,ib)
|
||
|
|
||
|
integer ia(n),ib(n)
|
||
|
do i=1,n
|
||
|
ib(i)=igray(ia(i),idir)
|
||
|
enddo
|
||
|
|
||
|
return
|
||
|
end subroutine graycode
|