Copy a p-vector.
Status: vector/matrix support routine.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3) | :: | p | p-vector to be copied |
|
real(kind=wp), | intent(out), | dimension(3) | :: | c | copy |
subroutine CP ( p, c )
implicit none
real(wp),dimension(3),intent(in) :: p !! p-vector to be copied
real(wp),dimension(3),intent(out) :: c !! copy
integer :: i
do i=1,3
c(i) = p(i)
end do
end subroutine CP