Difference between revisions of "CDBL"
Jump to navigation
Jump to search
Navigation:
imported>Clippy m |
imported>Clippy m |
||
Line 4: | Line 4: | ||
{{PageSyntax}} | {{PageSyntax}} | ||
− | : | + | :: doublevalue = '''CDBL('''''expression''''')''' |
+ | {{Parameters}} | ||
+ | * The ''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 {{KW|DOUBLE}}-precision up to 15 decimals. | ||
− | ''Example:'' | + | ''Example:'' Prints a double-precision version of the single-precision value stored in the variable named A. |
− | |||
{{CodeStart}} | {{CodeStart}} | ||
A = 454.67 | A = 454.67 | ||
{{Cl|PRINT}} A; {{Cl|CDBL}}(A) | {{Cl|PRINT}} A; {{Cl|CDBL}}(A) | ||
{{CodeEnd}} | {{CodeEnd}} | ||
− | + | {{OutputStart}} 454.67 454.6700134277344 | |
− | {{OutputStart}} | ||
− | 454.67 454.6700134277344 | ||
{{OutputEnd}} | {{OutputEnd}} | ||
− | + | : 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. | |
− | |||
− | : | ||
− | |||
{{PageSeeAlso}} | {{PageSeeAlso}} | ||
− | + | * [[CINT}]], [[CLNG]] | |
− | * | + | * [[CSNG}}, [[_ROUND]] |
− | |||
{{PageNavigation}} | {{PageNavigation}} |
Revision as of 19:39, 3 January 2016
CDBL converts a value to the closest DOUBLE-precision value.
Syntax
- doublevalue = CDBL(expression)
Parameters
- The 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.
Example: Prints a double-precision version of the single-precision value stored in the variable named 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