Engineering
Engineering-Conversion-Functions
| Name |
Brief |
Example |
| Base |
Converts an integer into a string representation of the specified radix. |
Example |
| Bin2Dec |
Converts a binary number to decimal. |
Example |
| BitLShift |
Shift a decimal number left by the specified number of bits. |
Example |
| BitRShift |
Shift a decimal number right by the specified number of bits. |
Example |
| Convert |
Converts a number from one measurement system to another. |
Example |
| Decimal |
Convert a string representation in the specified radix into a decimal number. |
Example |
| Dec2Bin |
Converts a decimal number to binary. |
Example |
| Dec2Hex |
Converts a decimal number to hexadecimal. |
Example |
| Hex2Dec |
Converts a hexadecimal number to decimal. Prefix "0x" not supported. |
Example |
| Hex |
Returns the base 10 equivalent to the hexadecimal value represented by the given string. |
Example |