Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer(kind=c_int), | value | :: | i |
function minpack_dpmpar(i) result(par) bind(c)
integer(c_int), value :: i
real(c_double) :: par
if (i > 0_c_int .and. i <= 3_c_int) then
par = dpmpar(i)
end if
end function minpack_dpmpar