Zero a p-vector.
Status: vector/matrix support routine.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(out), | dimension(3) | :: | p | p-vector |
subroutine ZP ( p )
implicit none
real(wp),dimension(3),intent(out) :: p !! p-vector
integer :: i
do i=1,3
p(i) = 0.0_wp
end do
end subroutine ZP