Difference between revisions of "NaN"

From Lazarus wiki
Jump to navigationJump to search
(Created page with "{{NaN}} NaN (not a number) is a numeric data type value representing an undefined or unrepresentable value. These values result from operations which have undefined numerical...")
 
Line 13: Line 13:
 
end.
 
end.
 
</source>
 
</source>
 +
 +
== See also ==
 +
* [[doc:rtl/math/nan.html| Value is Not a Number]] (fpc doc)
 +
* [[TAChart_documentation#Skipping_source_items]]

Revision as of 10:41, 24 October 2017

English (en) suomi (fi) русский (ru)

NaN (not a number) is a numeric data type value representing an undefined or unrepresentable value. These values result from operations which have undefined numerical results. NaN is not the same as infinity.

program Project1;

begin
  Writeln (0/0);
  Readln;
end.

See also