FloatToBinary (Float function): Difference between revisions
m (1 revision) |
m (match syntax diagram to revised template; fix tags and links) |
||
Line 1: | Line 1: | ||
{{Template:Float:FloatToBinary subtitle}} | {{Template:Float:FloatToBinary subtitle}} | ||
The <var>FloatToBinary</var> <var>[[Intrinsic classes|intrinsic]]</var> function converts a numeric value to the binary string equivalent of its floating point representation. | |||
of its floating point representation. | |||
==Syntax== | ==Syntax== | ||
{{Template:Float:FloatToBinary syntax}} | {{Template:Float:FloatToBinary syntax}} | ||
===Syntax terms=== | ===Syntax terms=== | ||
<table class="syntaxTable"> | <table class="syntaxTable"> | ||
<tr><th>% | <tr><th>%string</th> | ||
<td>A string variable to receive the converted value of the method object number. Since all <var>Float</var> types are processed in [[Model 204]] | <td>A string variable to receive the converted value of the method object number. Since all <var>Float</var> types are processed in <var class="product">[[Model 204]]</var> as Float Len 8, <var>FloatToBinary</var> always returns an 8-byte string. </td></tr> | ||
<tr><th> | <tr><th>float</th> | ||
<td>A <var>Float</var> value.</td></tr> | <td>A <var>Float</var> value.</td></tr> | ||
</table> | </table> | ||
==Usage notes== | ==Usage notes== | ||
<ul><li><var>FloatToBinary</var> is available as of <var class="product">[[Sirius Mods]]</var> Version 7.5.</ul> | |||
==Examples== | ==Examples== | ||
The following program demonstrates the <var>FloatToBinary</var> method. | <ol><li>The following program demonstrates the <var>FloatToBinary</var> method. | ||
<p class="code">begin | <p class="code">begin | ||
%i is float | |||
for %i from -5.5 to 5.5 by 1.1 | |||
printText {%i:right(5)}: {~} = {%i:floatToBinary:stringToHex} | |||
end for | |||
end | end | ||
</p> | </p> | ||
Line 38: | Line 37: | ||
4.4: %i:floatToBinary:stringToHex = 4146666666666666 | 4.4: %i:floatToBinary:stringToHex = 4146666666666666 | ||
5.5: %i:floatToBinary:stringToHex = 4158000000000000 | 5.5: %i:floatToBinary:stringToHex = 4158000000000000 | ||
</p></ol> | |||
==See also== | ==See also== | ||
<ul><li>For details of the <var>printtext</var> statement, please see <var>[[Intrinsic classes#printtext|printText]]</var>. | |||
<li>For details of the <var>right</var> function, please see <var>[[Right_(String_function)|right string function]]</var>. | |||
<li>The inverse of <var>FloatToBinary</var> is <var>[[BinaryToFloat (String function)|BinaryToFloat]]</var>.</ul> | |||
{{Template:Float:FloatToBinary footer}} | {{Template:Float:FloatToBinary footer}} |
Revision as of 06:58, 3 February 2011
Binary string containing floating point representation (Float class)
The FloatToBinary intrinsic function converts a numeric value to the binary string equivalent of its floating point representation.
Syntax
%string = float:FloatToBinary
Syntax terms
%string | A string variable to receive the converted value of the method object number. Since all Float types are processed in Model 204 as Float Len 8, FloatToBinary always returns an 8-byte string. |
---|---|
float | A Float value. |
Usage notes
- FloatToBinary is available as of Sirius Mods Version 7.5.
Examples
- The following program demonstrates the FloatToBinary method.
begin %i is float for %i from -5.5 to 5.5 by 1.1 printText {%i:right(5)}: {~} = {%i:floatToBinary:stringToHex} end for end
The result is:
-5.5: %i:floatToBinary:stringToHex = C158000000000000 -4.4: %i:floatToBinary:stringToHex = C146666666666666 -3.3: %i:floatToBinary:stringToHex = C134CCCCCCCCCCCC -2.2: %i:floatToBinary:stringToHex = C123333333333333 -1.1: %i:floatToBinary:stringToHex = C111999999999999 0: %i:floatToBinary:stringToHex = 0000000000000000 1.1: %i:floatToBinary:stringToHex = 4111999999999999 2.2: %i:floatToBinary:stringToHex = 4123333333333333 3.3: %i:floatToBinary:stringToHex = 4134CCCCCCCCCCCC 4.4: %i:floatToBinary:stringToHex = 4146666666666666 5.5: %i:floatToBinary:stringToHex = 4158000000000000
See also
- For details of the printtext statement, please see printText.
- For details of the right function, please see right string function.
- The inverse of FloatToBinary is BinaryToFloat.