3
votes
3answers
84 views
quick/fast integer multiplication in ruby?
Hi there,
I am trying to make a quick/efficient Mandelbrot implementation in Ruby. A long long time ago, one way to speed it up was using fixed point integers instead of floats.
…
2
votes
6answers
496 views
How do you multiply two 64-bit numbers in x86 assembler? [closed]
Possible Duplicate:
How can I multiply two 64bit numbers using x86 assembly language?
How do you multiply two 64-bit numbers in x86 assembler?
This question is important …
0
votes
4answers
62 views
.Net and multiplication of singles
Can anyone explain this weirdness:
Dim result as single = 0
result = CType("8.01", Single) * 100 ' result=801.0 as expected
result = CType("8.02", Single) * 100 ' result=802.00006 …
0
votes
1answer
89 views
Steps in multiplication of e*e [closed]
Why does Neper's number squared require six steps?
Neper's number is a floating point number. This suggests me that to calculate the multiplication completely you would you need m …
0
votes
1answer
214 views
Javascript multiplication w/value stored in another cell.
Update: Final Fix:
$('.gasamount').sum();
var num = $(this).attr("id").replace(/[A-Za-z$,-]/g, "");
$('#gasmoney'+num).val(<cfoutput>#mileage#</cfoutput> * $(t …
0
votes
3answers
139 views
Matrix Multiplication To Rotate An Image In C#
I need to write a program that uses matrix multiplication to rotate an image (a simple square), based on the center of the square, a certain amount of degree based on what I need. …
1
vote
2answers
310 views
Fast Fourier Transform - Multiplying Polynomials?
Hi guys, i just don't understand how to perform a FFT on two polynomials such as X^2+1 and X+1...can anyone step by step go through the process with me?
Thanks very much
1
vote
3answers
229 views
Fast Multiplication
Hi!
I'm writing code for a microprocessor with fast integer arithmetic and not so fast float arithmetic. I need to divide an integer by a number from 1 to 9 and convert result bac …
0
votes
5answers
99 views
JQuery Multiplication of 2 selects
Folks,
I'm trying to multiple the values of 2 select dropdowns whenever either of them are changed and then display that value.
This is what I have (which of course doesn't work) …
2
votes
3answers
139 views
Is there an easy way to find two values that, when multiplied together, produce an exact bit pattern?
For testing purposes, I need to find two 64-bit integer values that exactly multiply to a 128-bit intermediate value with a specific bit pattern. Obviously, I can generate the des …
-1
votes
5answers
298 views
C : erroneous output for “(long long int) = (long long int) * (double)”?
long long int A = 3289168178315264;
long long int B = 1470960727228416;
double D = sqrt(5);
long long int out = A + B*D;
printf("%lld",out);
This gives result : -2147483648
I …
1
vote
4answers
502 views
Multiplying two 32 bit numbers without using 64 bit int …
We are doing some 32bit * 32bit multiplication using the following algorithm
Let us we want to multiply a (32 bit) with b (32 bit), both signed,
a = ah * 2^16 + al [ah - Higher 1 …
1
vote
8answers
353 views
What’s better multiplication by 2 or adding the number to itself ? BIGnums
I need some help deciding what is better performance wise.
I'm working with bigints (more then 5 million digits) and most of the computation (if not all) is in the part of doublin …
-8
votes
16answers
2k views
Russian Peasant Multiplication
Here is my short implementation of Russian Peasant Multiplication. How can it be improved?
Restrictions : only works when a>0,b>0
for(p=0;p+=(a&1)*b,a!=1;a>>=1,b<< …
2
votes
2answers
281 views
Understanding Schönhage-Strassen algorithm (huge integer multiplication)
Hi, I need to multiply several 1000s digits long integers as efficiently as possible in Python. The numbers are read from a file.
I am trying to implement the Schönhage-Strassen a …
