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