isinf function

This 2019.1 documentation has been archived and is no longer updated. Content and links may be outdated. See the latest documentation.

Syntax

  • bool isinf(float value)

Returns

True if value is infinite, false otherwise.

Description

The isinf function checks if value is an infinite value.

Related

Examples

example.1
	isinf(1/0)
	# result = true
example.2
	isinf(ln(0))
	# result = true

In this topic