Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
548 views
1
module gausspiv_mod
2
interface
3
subroutine gausspiv(a, b, ip, det)
4
implicit none
5
real(8), intent (inout) :: a(:,:)
6
real(8), intent (inout) :: b(:)
7
integer, intent (out) :: ip(:)
8
real(8), intent (out) :: det
9
end subroutine gausspiv
10
end interface
11
end module gausspiv_mod
12
13