https://github.com/cran/fields
Raw File
Tip revision: 8e4f3eaf088a2f2f7992139ada70d2fb655e46de authored by Doug Nychka on 27 August 2003, 16:33:19 UTC
version 1.4.2
Tip revision: 8e4f3ea
msort.f

         subroutine msort( m,n,x)
c sorts the columns of mXn matrix in place
         real*8 x(m,1)
         integer m,n,j
         do 10 j=1,n
                call hsort(x(1,j),m)
 10      continue
         return
         end
back to top