Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Last revision Both sides next revision
real_value_type [2012/09/27 20:14]
admin created
real_value_type [2015/10/12 16:25]
admin [Real Value Type]
Line 1: Line 1:
-====== ​Double ​Type ======+====== ​Real Value Type ======
  
-A [[wp>​Real_number|double ​number]] denotes all fractional and non-fractional values.+A [[wp>​Real_number|real number]] denotes all fractional and non-fractional values
 + 
 +This value is defined as a [[wp>​Double_precision_floating-point_format|double precision floating point number]], according to the IEEE754 standard. This type was previously known as "​Double Type".
  
 ===== GUI Editor ===== ===== GUI Editor =====
Line 9: Line 11:
 ===== EGO Script ===== ===== EGO Script =====
  
-Doubles in Dinamica EGO uses the standard representation for real numbers.+Doubles in Dinamica EGO uses the standard representation for floating point numbers.
  
   * 1, 2, 198 etc.   * 1, 2, 198 etc.
Line 15: Line 17:
   * -1.002, -2321.3441, -198.4455 etc.   * -1.002, -2321.3441, -198.4455 etc.
   * 5.45e-32, -34.211e+45 etc (MeE, where M is a mantissa and E is the exponent denotes M*10<​sup>​P</​sup>​) ​   * 5.45e-32, -34.211e+45 etc (MeE, where M is a mantissa and E is the exponent denotes M*10<​sup>​P</​sup>​) ​
 +
 +===== Automatic Conversions =====
 +
 +  * **Converted from**: [[Integer Value Type]], [[Non Negative Integer Value Type]], [[Positive Integer Value Type]], [[Boolean Value Type]], [[String Type]], [[Log Tag Type]] and [[Table Value Type]].
 +
 +  * **Converted to**: [[Integer Value Type]], [[Non Negative Integer Value Type]], [[Positive Integer Value Type]], [[Boolean Value Type]], [[Null Value Type]], [[Log Tag Type]], [[Percent Type]], [[String Type]], [[Cell Type Type|Cell Type]], [[Tuple Type]] and [[Table Value Type]].