Copy an r-matrix.
Status: vector/matrix support routine.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
real(kind=wp), | intent(in), | dimension(3,3) | :: | r | r-matrix to be copied |
|
real(kind=wp), | intent(out), | dimension(3,3) | :: | c | copy |
subroutine CR ( r, c )
implicit none
real(wp),dimension(3,3),intent(in) :: r !! r-matrix to be copied
real(wp),dimension(3,3),intent(out) :: c !! copy
integer :: i
do i=1,3
call CP ( r(1,i), c(1,i) )
end do
end subroutine CR