Multiply a p-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) | :: | p | p-vector |
|
real(kind=wp), | intent(out), | dimension(3) | :: | sp | S * P |
subroutine SXP ( s, p, sp )
implicit none
real(wp),intent(in) :: s !! scalar
real(wp),dimension(3),intent(in) :: p !! p-vector
real(wp),dimension(3),intent(out) :: sp !! S * P
integer :: i
do i=1,3
sp(i) = s * p(i)
end do
end subroutine SXP