CDBL: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
(Created page with "CDBL converts a value to the closest DOUBLE-precision value. {{PageSyntax}} : {{Parameter|doubleValue#}} = CDBL({{Parameter|expression}}) {{Parameters}} * {{Parameter|expression}} is any TYPE of literal or variable numerical value or mathematical calculation. {{PageDescription}} * Rounds to the closest DOUBLE floating decimal point value. * Also can be used to define a value as DOUBLE-precision up to 15 decimals. {{PageExamples}} ''Exampl...")
Tag: visualeditor-switched
 
No edit summary
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
[[CDBL]] converts a value to the closest [[DOUBLE]]-precision value.
[[CDBL]] converts a value to the closest [[DOUBLE]]-precision value.




Line 7: Line 6:




{{Parameters}}
{{PageParameters}}
* {{Parameter|expression}} is any [[TYPE]] of literal or variable numerical value or mathematical calculation.
* {{Parameter|expression}} is any [[TYPE]] of literal or variable numerical value or mathematical calculation.


Line 28: Line 27:


{{PageSeeAlso}}
{{PageSeeAlso}}
* [[CINT]], [[CLNG]]  
* [[CINT]], [[CLNG]]
* [[CSNG]], [[_ROUND]]
* [[CSNG]], [[_ROUND]]




{{PageNavigation}}
{{PageNavigation}}

Latest revision as of 00:21, 29 January 2023

CDBL converts a value to the closest DOUBLE-precision value.


Syntax

doubleValue# = CDBL(expression)


Parameters

  • expression is any TYPE of literal or variable numerical value or mathematical calculation.


Description

  • Rounds to the closest DOUBLE floating decimal point value.
  • Also can be used to define a value as DOUBLE-precision up to 15 decimals.


Examples

Example: Prints a double-precision version of the single-precision value stored in the variable named A.

 A = 454.67
 PRINT A; CDBL(A)
 454.67 454.6700134277344
The last 11 numbers in the double-precision number change the value in this example, since A was previously defined to only two-decimal place accuracy.


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link