https://github.com/cran/quantreg
Raw File
Tip revision: e68bc7a85a07b3e14413a96d0e472ee5a317a644 authored by Roger Koenker on 24 February 2021, 15:20:02 UTC
version 5.85
Tip revision: e68bc7a
grexp.f
C Output from Public domain Ratfor, version 1.05
      subroutine grexp(n, x, a)
      integer i,n
      double precision x(n),a
      call fseedi()
      do23000 i = 1,n
      call frexp(x(i), a)
23000 continue
23001 continue
      call fseedo()
      return
      end
back to top