Base conversion is the process of changing the base of the textual representation of a number to another base. For example, "1010" in binary to "10" in decimal is a base conversion.
2
votes
1answer
31 views
base_convert numbers map to letters
How can I use base_convert to map numbers to letters?
for example 123456 would become ABCDEF.
So a number 123321 would become ABCCBA
I actually have a unique number, that needs to keep it's ...
-4
votes
2answers
409 views
Base 10 to base 2,8,16 conversion in java [duplicate]
I'm in this Object Oriented class, but I just don't know how to do this. I know basic fundamentals but nothing like this. I am asked to create a program that converts #'s base 10 to base 2, base 8,and ...
1
vote
1answer
54 views
Convert integer to hex with padding in Python [duplicate]
I have an integer (67) that needs to be converted to hex and stored as a string like:
"\x00\x00\x00\x43"
How can I do this in Python?
0
votes
1answer
88 views
base 16 to base 2^64 conversion in GMP
I read in some hex numbers and I then would like to convert them to base 2^64. Unfortunately as this number cannot be stored in an int, it seems there is no function in GMP that can help me solve this ...
0
votes
1answer
37 views
Trying to reproduce a dechex() function behaviour on x64 architecture
The example #2 of the PHP manual page of the dechex() function is the following :
// The output below assumes a 32-bit platform.
// Note that the output is the same for all values.
echo ...
1
vote
3answers
60 views
ask user to reenter input if there is an error in python
I am working on a program in python to convert from any number base to any number base. My code is as follows
num = raw_input("Please enter a number: ")
base = int(raw_input("Please enter the base ...
0
votes
5answers
71 views
character array is not getting printed using %s
1.While I am trying to display conv it is not showing anything, but when i print one one element using subscript i am able to see the contents.
2. Program to convert decimal to binary, octal, ...
-3
votes
3answers
128 views
C++ Conversion to Vector Representation of a Number in Any Base [duplicate]
Possible Duplicate:
c++ template for conversion between decimal and arbitrary base
I would like to convert an instance of unsigned int to an instance of std::vector<unsigned int> in ...
1
vote
2answers
282 views
Base 10 to Base 32 Conversion
I have a routine that converts base10 to bas32 and what is interesting that when I double check some numbers using online conversion tools there seems to be an issue. Here are some numbers and the ...
2
votes
1answer
107 views
Bash base 62 to decimal conversion
I would like to reverse the operation performed by the following bash command:
$ echo $((62#a39qrT))
9207903953
i.e. convert decimal to base 62, keeping bash standard of {0..9},{a..z},{A..Z}.
I ...
-1
votes
1answer
140 views
c++ check if string contains a character or not and how to convert a binary string into integer
I have a binary string like "01001111111". I want to know that if that string contains "0" or not. How to do that ? And if I want to convert it into integer, how to get that ?
1
vote
1answer
383 views
Negative floating point to binary conversion
I am using the AR Drone SDK to program the drone. In the docs, is says this:
The number -0.8 is stored in memory as a 32- bit word whose value is
BF4CCCCD(16), according to the IEEE-754 format. ...
2
votes
3answers
318 views
Convert Negative-base binary to Decimal in Haskell: “Instances of .. required”
I have to write two functions converting decimal numers into a (-2)adian number system (similar to binary only with -2) and vice versa.
I already have managed to get the decimal -> (-2)adian running.
...
1
vote
1answer
43 views
What might be causing my results to print out in reverse of what they should?
This is my last lab of this set for while/do-while loops and I've got it all figured out aside from my result printing out in the exact reverse of what it should be.
public class TenToAny
{
private ...
3
votes
2answers
150 views
How to convert string to int with different bases?
I want to convert string to int but the conversion has to consider the prefixes 0x or 0 if any and consider the input as hex or oct respectively. Using istringstream, you need to explicitly specify ...
1
vote
0answers
78 views
Convert a number in base B to binary
I have a very large string (around 1000 characters) and its represented in base B.
Whats the best way to convert it to binary representation since I can't use any arithmetic operators.
This is an ...
0
votes
0answers
57 views
What does base -2 mean?
Can anyone help me understand what is base -2? I understand base in positive integers and know how to convert a decimal number to those bases, but really do not have any idea with negative base.
0
votes
2answers
1k views
Converting ASCII number to binary in x86
So im reading the user's 8-digit input, and saving it into a variable. for example:
Enter an 8-digit hex number: 1ABC5678
So, then i loop through the 1ABC5678 hex number and subtract 48 from numbers ...
6
votes
3answers
460 views
Converting a octal String to Decimal in Objective-C?
I trying to do conversions between Binary, Octal, Decimal and Hexadecimal in Objective-C.
I had problems converting Octal to Decimal.
I have tried the following:
NSString *decString = [NSString ...
3
votes
2answers
686 views
Base 10 to base n conversions [closed]
I'm trying to solve a problem, which requires knowledge in base conversions. More precisely, you want to convert a decimal number to all the other integer bases ( from 2 to 20 ). I have searched it a ...
0
votes
1answer
97 views
Base conversion for array of fractional places
I am trying to implement an algorithm to convert an array of integers, which represent the digits of the fractional part of a number, from one base to another. In other words:
int[] input = {0, 0, ...
3
votes
1answer
250 views
Computing the Factoradic Rank of a Permutation (N choose K)
I've recently learnt about CNS and FNS, and since they look so elegant to me, I decided to try and implement methods to generate combinations and permutations using those techniques. I finished my ...
0
votes
2answers
452 views
How to convert base64 to base10 in PHP?
I currently convert base10 numbers to base64 in PHP.
but I haven't any idea for convert base64 to base10 in php!
How can I do it?
my algorithm for convert base10 to base64:
$rep = ...
0
votes
3answers
292 views
PHP returns floats instead of strings from a database?
I use this to create a unique code for each product in my store,
echo base_convert(uniqid(),16,10);
For instance,
1403802682572650
My query is simple like this,
$sql = "
...
4
votes
4answers
585 views
How to convert a string to its Base-10 representation?
Is there any python module that would help me to convert a string into a 64-bit integer?
(the maximum length of this string is 8 chars, so it should fit in a long).
I would like to avoid having to ...
1
vote
1answer
75 views
Java's buit-in libraries (or 3rd party code) to do base-conversions
Is there any built-in libraries (or any good 3rd party code) that support converting a number from any arbitrary base A to another base B?
Thanks,
2
votes
2answers
286 views
Hex decimal to float Python
I'm reading data from a binary file. I have a document that lets me know how the information is stored. To be sure of this I use XVI32.
I was extracting information string and int data correctly, ...
0
votes
1answer
1k views
Base number converter from 10 base with recursive function - C
I try to convert any number base from 10 base. After I multiply two numbers that the same base, but the function should be recursive.
double convert(int number,int base)
{
int digit = 1;
...
0
votes
2answers
257 views
How do I convert a Hexa-Tri-Decimal number into an int in objective c?
The Hexa-Tri-Decimal number is 0-9 and A-Z. I know I can covert from hex with a NSScanner but not sure how to go about converting Hexa-Tri-Decimal.
For example I have a NSString with "0XPM" the int ...
4
votes
3answers
796 views
Converting number base
Is there a platform function that will do the following?
convertBase :: (Num a, Num b) => Int -> Int -> [a] -> [b]
Convert a number from base 'a' to base 'b' where each list item is a ...
2
votes
2answers
733 views
PHP conversions between binary, octal, decimal and hexadecimal with floating number
I would like to convert floating numbers (eg. 152.35964) between binary, octal, decimal and hexadecimal numbers.
I googled but I didn't found anything relative to what I want. All that I have found ...
2
votes
1answer
193 views
Convert non terminating binary number to decimal
I don't know how to convert a non terminating binary number(fraction) to decimal . Can anybody guide me how to do with an example?
2
votes
3answers
397 views
Scheme recursion (decimal to octal)
So our class was given an assignment to convert decimal numbers to their octal representations. I managed to just tinker with it till it worked, but I'm having some problems comprehending why it ...
1
vote
1answer
581 views
c++ template for conversion between decimal and arbitrary base
Is there a c++ structure or template (in any library) that allows me to do conversion between decimal and any other base (much like what bitset can do) ?
4
votes
2answers
169 views
Converting decimal to binary
I want to convert decimal number in binary number. I'm using this method:
- (NSMutableString*)intStringToBinary:(long long)element{
NSMutableString *str = [[NSMutableString alloc] ...
2
votes
1answer
139 views
base_convert and negative numbers
The base_convert() function doesn't seem to preserve the sign.
For example:
var_dump (base_convert ('-100', 10, 10));
The output of this is 100
Is there a way of converting bases without ...
4
votes
3answers
192 views
Optimizing Base Conversion Loop
So, for my Cryptography Library, I have a base converter that I use quite often. It's not the most efficient thing in the world, but it works quite well for all ranges of input.
The bulk of the work ...
1
vote
3answers
292 views
PHP: Will this function always generate a unique string?
Will this following function always generate a unique string? What will be the length range of generated string from the following function? Can it be improved to generate more uniqueness?
...
0
votes
3answers
216 views
Reading and setting base 3 digits from base 2 integer
Part of my application data contains a set of 9 ternary (base-3) "bits". To keep the data compact for the database, I would like to store that data as a single short. Since 3^9 < 2^15 I can ...
0
votes
5answers
134 views
Random string gets repeated?
I have a service on the internet where people post pictures and a short string is generated. Only one can be used ever. However, I am getting into duplicates in the database and I am seeing major ...
1
vote
1answer
230 views
Conversion between Zeckendorf and Golden Ratio Base
Zeckendorf and Golden Ratio Base are clearly closely related, but still it seems tricky to convert from one to the other. I know that there is work by Frougny and Sakarovitch on this, but I haven't ...
6
votes
2answers
643 views
Unlimited-size base conversion?
I'm trying to implement a BigInt type in JavaScript using an array of integers. For now each one has an upper-bound of 256. I've finished implementing all integer operations, but I can't figure out ...
1
vote
3answers
93 views
Why is it useful to know how to convert between numeric bases?
We are learning about converting Binary to Decimal (and vice-versa) as well as other base-conversion methods, but I don't understand the necessity of this knowledge.
Are there any real-world uses for ...
4
votes
3answers
4k views
Convert large hex string to decimal string
I need to convert a large (too large for the built-in data types) hex string to a string with it's decimal representation. For example:
std::string sHex = "07AA17C660F3DD1D2A1B48F1B746C148";
...
4
votes
4answers
7k views
Decimal-to-binary conversion
I want to convert decimal numbers to binary numbers. I want to store them in an array.
First I need to create an array that has a certain length so that I can store the binary numbers. After that I ...
1
vote
4answers
1k views
PL/SQL base conversion without functions
Is there any way to convert decimal to binary, or binary to decimal, in Oracle 10g without having to first define a function? I have limited database access (SELECT only) and all the solutions for ...
-5
votes
7answers
3k views
algorithm to convert a number in an unknown base to the equivalent base 10 number [duplicate]
Possible Duplicate:
Efficient algorithm for conversion between numeral system
Given an integer, write a program that converts the given number to a number (in base 10). Hint - The given ...
1
vote
2answers
1k views
How can I convert a number in a string to any base in assembly?
How can I convert a number contained in a string from any base to any other base?
Bases can be anything i.e.: 2, 16, 10, 4, 8, 9.
I'm expecting the user to enter the base number. The user will enter ...
2
votes
6answers
5k views
PHP - Generate an 8 character hash from an integer
Is there a way to take any number, from say, 1 to 40000 and generate an 8 character hash?
I was thinking of using base_convert but couldn't figure out a way to force it to be an 8 character hash.
...
6
votes
6answers
3k views
Getting a hexadecimal number into a program via the command line
I can do this:
int main(int argc, char** argv) {
unsigned char cTest = 0xff;
return 0;
}
But what's the right way to get a hexadecimal number into the program via the command line?
unsigned ...



