https://github.com/cran/fields
Raw File
Tip revision: 32c60b2ec8167f7d2b26f55147b4e380a8ad77b3 authored by Doug Nychka on 25 September 2011, 00:00:00 UTC
version 6.6.1
Tip revision: 32c60b2
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