Ask a Question related to Coldfusion Database Access, Design and Development.
-
athanasiusrc #1
Multiplication problem
Declare
@distributionprice money,
@msrp money,
@wholesalepercent int
SET
@MSRP = 11.95
SET @distributionprice = @MSRP * ((100-@Wholesalepercent) / 100)
Why is @idstributionprice resulting in 0 instead of 7.17?
This has got to be a simple conversion problem.
athanasiusrc Guest
-
Karatsuba multiplication
So, what was the result of the recent thread on Karatsuba multiplication? Is someone working on it? If not I thought I might give it a shot, but... -
Bignum multiplication
I was just reading about Python 2.3 and they talked about how they've changed their arbitrary-precision integer multiplication to use the Karatsuba... -
Matrix multiplication?
Hi I have a 21 * 21 matrix which I'd like to raise to the power of 50. Is it possible to do that in Perl? The matrix looks something like... -
Multiplication
Can anyone help me with my memory loss? How do I multiply 2 numbers in php? I.e variable1 * variable2 = ??? Thanks -
#24577 [Opn->Fbk]: decimal multiplication bug
ID: 24577 Updated by: sniper@php.net Reported By: xobot at inbox dot ru -Status: Open +Status: ... -
athanasiusrc #2
Re: Multiplication problem
Nevermind. I needed to write "100.00" instead of just "100"
athanasiusrc Guest



Reply With Quote

