Difference between revisions of "Template:Binary/doc"

From blackwiki
Jump to navigation Jump to search
imported>Vanisaac
imported>Vanisaac
Line 5: Line 5:
 
=== Usage ===
 
=== Usage ===
  
Use <code><nowiki>{{Binary|x|y}}</nowiki></code> where x is the decimal number and y is the decimal precision (max 10).  
+
Use <code><nowiki>{{Binary|x|y}}</nowiki></code> where x is the decimal number and y is the decimal precision (positive numbers, max 10).  
  
 
Numbers greater than 134,217,727 (2<sup>27</sup>-1) are not accepted, if you want to add functionality for them, go ahead or drop a note at [[User_talk:Jkasd|Jkasd's talk page]].
 
Numbers greater than 134,217,727 (2<sup>27</sup>-1) are not accepted, if you want to add functionality for them, go ahead or drop a note at [[User_talk:Jkasd|Jkasd's talk page]].

Revision as of 10:48, 21 July 2011

This template is for quickly converting a decimal number to binary.

Usage

Use {{Binary|x|y}} where x is the decimal number and y is the decimal precision (positive numbers, max 10).

Numbers greater than 134,217,727 (227-1) are not accepted, if you want to add functionality for them, go ahead or drop a note at Jkasd's talk page.

Examples:

Code Result Notes
{{Binary|128892}} 111110111011111002 Regular integer
{{Binary|73.3333333|5}} 1001001.010102 Truncated decimal
{{Binary|73.3333333|0}} 10010012 Truncated at decimal point
{{Binary|73|5}} 1001001.000002 Decimals padded to integer
{{Binary|73.25}} 1001001.012 Auto truncation
{{Binary|73.25|4}} 1001001.01002 Decimals padded
{{Binary|134217727.9999999}} 111111111111111111111111111.11111111112 Maximum value and precision

See also