iscont
test continuity on an interval
Calling Sequence
Parameters
Description
Examples
iscont(expr, x = a .. b)
iscont(expr, x = a .. b, 'closed')
iscont(expr, x = a .. b, 'open')
expr
-
an algebraic expression
x
variable name
a..b
real interval
'closed'
(optional) indicates that endpoints should be checked
'open'
(optional) indicates that endpoints should not be checked (default)
The iscont function returns true if the expression is continuous on the interval, or false if the expression is not continuous. If iscont cannot determine the result it returns FAIL.
The iscont function assumes that any symbols in the expression are real.
By default, or if the optional third argument 'open' is specified, then the interval is considered to be an open interval. If the optional third argument 'closed' is specified then continuity at the endpoints is checked; specifically under this option, and must be defined and be finite.
The endpoints of the interval must be either real constants or infinity or -infinity.
If the endpoints of the interval are ordered with the first value greater than the second, iscont will reverse them.
Unless specified, the interval is assumed to be open.
If iscont cannot determine the result it returns FAIL.
See Also
discont
Download Help Document