fit_exp Function

public pure function fit_exp(x, x1, y1, x2, y2)

Returns an exponential interpolation y(x) between (x1,y1) and (x2,y2). Useful for computing an exponentially decreasing enveloppe.

Arguments

Type IntentOptional Attributes Name
real(kind=wp), intent(in) :: x
real(kind=wp), intent(in) :: x1
real(kind=wp), intent(in) :: y1
real(kind=wp), intent(in) :: x2
real(kind=wp), intent(in) :: y2

Return Value real(kind=wp)


Called by

proc~~fit_exp~~CalledByGraph proc~fit_exp fit_exp proc~add_bell add_bell proc~add_bell->proc~fit_exp program~all_signals all_signals program~all_signals->proc~add_bell program~multiplication_bells multiplication_bells program~multiplication_bells->proc~add_bell