fcn_ Subroutine

subroutine fcn_(n, x, f)

Arguments

Type IntentOptional Attributes Name
integer :: n
real(kind=8) :: x(n)
real(kind=8) :: f

Calls

proc~~fcn_~~CallsGraph proc~fcn_ fcn_ func func proc~fcn_->func

Source Code

subroutine fcn_(n,x,f)
  integer :: n
  real(8) :: x(n)
  real(8) :: f
  f=func(x)
end subroutine fcn_