Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
complex(kind=DPC), | intent(inout), | DIMENSION(:) | :: | a | ||
complex(kind=DPC), | intent(inout), | DIMENSION(:) | :: | b |
SUBROUTINE swap_zv(a,b)
COMPLEX(DPC), DIMENSION(:), INTENT(INOUT) :: a,b
COMPLEX(DPC), DIMENSION(SIZE(a)) :: dum
dum=a
a=b
b=dum
END SUBROUTINE swap_zv