func Function

function func(x)

Problem function

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in) :: x

Return Value real(kind=wp)


Called by

proc~~func~~CalledByGraph proc~func test2::func proc~my_func~2 test2::my_func proc~my_func~2->proc~func

Source Code

    function func(x)
        !! Problem function
        real(wp), intent(in) :: x
        real(wp) :: func
        func = x + sin(x)
    end function func