Tagged Questions

2
votes
5answers
113 views

Calculate exponents via addition only

We're writing a very simple program to execute on a processor we've built for a class. It doesn't have the capability to multiply or divide. We do however, had support for addition, subtraction, and, …
2
votes
5answers
103 views

Large Exponents in Ruby?

I'm just doing some University related Diffie Hellmann exercises and tried to use ruby for it. Sadly, ruby doesn't seem to be able to deal with large exponents: warning: in a**b, b may be too big …
2
votes
3answers
199 views

convert exponential to decimal in python

I have an array in python that contains a set of values, some of them are 2.32313e+07 2.1155e+07 1.923e+07 11856 112.32 How do I convert the exponential formats to the decimal format …
2
votes
2answers
257 views

How to calculate an arbitrary power/root?

I have a application which needs to raise a number to a fractional power. The target platform is an FPGA and I can get estimates on an FPU size for it, but I need an algorithm for raising a number to …
2
votes
5answers
176 views

Using C: How can I determine the sizes of the components of a floating point?

I am looking for suggestions on how to find the sizes (in bits) and range of floating point numbers in an architecture independent manner. The code could be built on various platforms (AIX, Linux, …
1
vote
3answers
28 views

How do ldexp and frexp work in python?

The python frexp and ldexp functions splits floats into mantissa and exponent. Do anybody know if this process exposes the actual float structure, or if it requires python to do expensive logarithmic …
1
vote
2answers
97 views

Easier way to prevent numbers from showing in exponent notation

I'm going to rely on the saying that no question is a dumb question, but I have a slightly dumb one to ask. EDIT: Seems that this question has been asked and answered a few times on here already, …
0
votes
1answer
186 views

SAS function for using ‘power’ / exponential

I may be missing something obvious, but how do you calculate 'powers' in SAS? Eg X squared, or Y cubed? what I need is to have variable1 ^ variable2, but cannot find the syntax... (I am using …
0
votes
4answers
87 views

How do I combine n and e to create the public key in RSA?

Hello :) I have a 128 byte (1024 bit) modulus (in a byte array format) and my exponent (also in a byte array format). I need to create a 128 bytes byte array representing the public key. According …
0
votes
4answers
347 views

iPhone Text Field

Hello, I have run into an issue that I have yet to be able to solve. Hopefully someone can help. I have an app that I am using to do simple calculations, some of the results are larger than the …
0
votes
2answers
884 views

C# RSA encryption using modulus and public exponent

I have to implement a digital envelope using AES and RSA, but I am having problems with the .NET implementation of the RSA algorithm. I have managed to encrypt the data (AES) with the random symetric …
0
votes
5answers
364 views

Float to String: What is an Exponent part?

Hi there ;-) I've written a small function in C, which almost do the same work as standart function `fcvt'. As you may know, this function takes a float/double and make a string, representing this …
0
votes
5answers
1k views

How do you use an exponent in c++ with a variable?

So I realize that #include is necessary, and that there is a pow(x,y) where x^y works...but when I attempted to use pow(2,(num-1)), it kicked back an error... errorC2668: 'pow' : ambiguous call to …
0
votes
2answers
144 views

.NET Currency exponent ISO_4217

Hi guys, I'm developing something for international use. Wondering if anyone can shed any light on whether the CultureInfo class has support for finding currency exponents for particular countries, …