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