mirror of
https://github.com/jtdx-project/jtdx
synced 2026-08-13 17:35:38 -04:00
9 lines
148 B
Fortran
9 lines
148 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
|