ZR Subroutine

public subroutine ZR(r)

Initialize an r-matrix to the null matrix.

Status: vector/matrix support routine.

History

  • IAU SOFA revision: 2012 April 3

Arguments

TypeIntentOptionalAttributesName
real(kind=wp), intent(out), dimension(3,3):: r

r-matrix


Contents

Source Code

ZR

Source Code

    subroutine ZR ( r )

    implicit none

    real(wp),dimension(3,3),intent(out) :: r !! r-matrix

    r(1,1) = 0.0_wp
    r(1,2) = 0.0_wp
    r(1,3) = 0.0_wp
    r(2,1) = 0.0_wp
    r(2,2) = 0.0_wp
    r(2,3) = 0.0_wp
    r(3,1) = 0.0_wp
    r(3,2) = 0.0_wp
    r(3,3) = 0.0_wp

    end subroutine ZR