blob: 118a9653312ac0bcc654147cd2e3267ba4a4dc54 [file] [log] [blame]
real*8 function magne(S, L)
implicit none
integer*4, intent(in) :: L
integer*2, intent(out) :: S(1:64,1:64)
integer*4 :: i, j
real*8 :: mag
mag = 0d0
do i = 1, L
do j = 1, L
mag = mag + S(i, j)
enddo
enddo
magne = mag
return
end function magne