Multiply a pv-vector by a scalar.
Status: vector/matrix support routine.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in) | :: | s | scalar |
||
real(kind=wp), | intent(in), | dimension(3,2) | :: | pv | pv-vector |
|
real(kind=wp), | intent(out), | dimension(3,2) | :: | spv | S * PV |
subroutine SXPV ( s, pv, spv )
implicit none
real(wp),intent(in) :: s !! scalar
real(wp),dimension(3,2),intent(in) :: pv !! pv-vector
real(wp),dimension(3,2),intent(out) :: spv !! S * PV
call S2XPV ( s, s, pv, spv )
end subroutine SXPV