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