Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
548 views
1
module residuo_mod
2
interface
3
subroutine residuo(aa, bb, b)
4
implicit none
5
real(8), intent (in) :: aa(:,:), b(:)
6
real(8), intent (inout) :: bb(:)
7
end subroutine residuo
8
end interface
9
end module residuo_mod
10
11