swap_c Subroutine

public subroutine swap_c(a, b)

Arguments

Type IntentOptional AttributesName
complex(kind=SPC), intent(inout) :: a
complex(kind=SPC), intent(inout) :: b

Contents

Source Code


Source Code

	SUBROUTINE swap_c(a,b)
	COMPLEX(SPC), INTENT(INOUT) :: a,b
	COMPLEX(SPC) :: dum
	dum=a
	a=b
	b=dum
	END SUBROUTINE swap_c