1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-16 22:25:14 +00:00
qb64/internal/help/MKDMBF$.md

16 lines
446 B
Markdown
Raw Normal View History

The [MKDMBF$](MKDMBF$) function encodes a double-precision IEEE number to a string value in the Microsoft Binary format.
## Syntax
> result$ = [MKDMBF$](MKDMBF$)(doublePrecisionVariableOrLiteral#)
## Description
* Encodes [DOUBLE](DOUBLE) values to [STRING](STRING) values in Microsoft Binary format.
* The resulting string value can be decoded using [CVDMBF](CVDMBF).
## See Also
* [MKSMBF$](MKSMBF$)
* [CVDMBF](CVDMBF), [CVSMBF](CVSMBF)