Description Usage Arguments Value See Also
Given is a unary function f
and a coordinate x1
as
well as a value x2
. The general goal is to find an x
value
for which f
becomes finite and which is as close as possible to
x1
from the range min(x1,x2)...max(x1,x2)
. If f(x1)
is
finite, return c(x1, f(x1)
. Otherwise, try to find a value t
within the interval delimited by x1
and x2
for which f
takes on a finite value, then return c(t, f(t)
. If no such value can
be discovered, return c(x1, f(x1)
. This function will produce many
warnings, see find.finite.nw
for a function not producing
warnings at the cost of lower speed.
1 | find.finite(x1, x2, f)
|
x1 |
the |
x2 |
the second interval limit, should be either larger or smaller than
|
f |
the unary function |
a tuple x, f(x)
, which results from the attempt to find a
finite function value
find.finite.nw
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.