blob: 4d20472740937b14b61b530fcf1f4c40f783ec97 (
plain)
1
2
3
4
5
6
|
subroutine zadd(a,b,c,n) ! in :add:add.f
double complex dimension(n) :: a
double complex dimension(n) :: b
double complex intent(out),dimension(n) :: c
integer intent(hide),depend(a) :: n=len(a)
end subroutine zadd
|