squareWrapperInternal Subroutine

subroutine squareWrapperInternal(x, y)

Arguments

Type IntentOptional AttributesName
real(kind=wp), intent(in), dimension(:):: x
real(kind=wp), intent(out), dimension(:):: y

Calls

proc~~squarewrapperinternal~2~~CallsGraph proc~squarewrapperinternal~2 squareWrapperInternal squarefun squarefun proc~squarewrapperinternal~2->squarefun
Help

Called By

proc~~squarewrapperinternal~2~~CalledByGraph proc~squarewrapperinternal~2 squareWrapperInternal program~main_ex main_ex program~main_ex->proc~squarewrapperinternal~2
Help

Source Code


Source Code

  subroutine squareWrapperInternal(x, y)
    real(wp), intent(in),   dimension(:)  :: x
    real(wp), intent(out),  dimension(:)  :: y

    y = squareFun(x)

    return
  end subroutine squareWrapperInternal