Difference between revisions of "Dec to bin"
Jump to navigation
Jump to search
| Line 1: | Line 1: | ||
{{Function | {{Function | ||
|name=dec_to_bin | |name=dec_to_bin | ||
| − | |desc=Converts a decimal number to a binary number in a similar way to the | + | |desc=Converts a decimal number to a binary number in a similar way to the de2bi function in MATLAB. |
|cat=[[List of functions#Helper_functions|Helper functions]] | |cat=[[List of functions#Helper_functions|Helper functions]] | ||
|upd=July 6th, 2018 | |upd=July 6th, 2018 | ||
Revision as of 11:38, 18 July 2018
| dec_to_bin | |
| Converts a decimal number to a binary number in a similar way to the de2bi function in MATLAB. | |
| Other toolboxes required | none |
|---|---|
| Function category | Helper functions |
| This is a helper function that only exists to aid other functions in QETLAB. If you are an end-user of QETLAB, you likely will never have a reason to use this function. |
dec_to_bin is a function that takes a decimal number as input and converts it to a vector representing the binary form of the number with the MSB to the right.
Syntax
- BIN = dec_to_bin(DEC)
Argument descriptions
- DEC: The decimal number to be converted to a vector representing the binary form of DEC. This must be a non-negative integer.
Examples
Some basic examples of how dec_to_bin works.
>> dec_to_bin(5)
ans =
1 0 1
>> dec_to_bin(6)
ans =
0 1 1Notes
This function is only meant to simplify code within other functions without the need to install the communications package of MATLAB or Octave-Forge.
Source code
Click here to view this function's source code on github.