https://github.com/cran/fields
Raw File
Tip revision: a82f141190b29d59547a12b9a44a7e2d1af8fb60 authored by Doug Nychka on 05 January 2007, 21:27:53 UTC
version 3.3.1
Tip revision: a82f141
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