Subtract one pv-vector from another.
Status: vector/matrix support routine.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3,2) | :: | a | first pv-vector |
|
real(kind=wp), | intent(in), | dimension(3,2) | :: | b | second pv-vector |
|
real(kind=wp), | intent(out), | dimension(3,2) | :: | amb | A - B |
subroutine PVMPV ( a, b, amb )
implicit none
real(wp),dimension(3,2),intent(in) :: a !! first pv-vector
real(wp),dimension(3,2),intent(in) :: b !! second pv-vector
real(wp),dimension(3,2),intent(out) :: amb !! A - B
integer :: i
do i=1,2
call PMP ( a(1,i), b(1,i), amb(1,i) )
end do
end subroutine PVMPV