Tagged Questions
The multiplying tag has no wiki summary.
17
votes
3answers
164 views
shift bits vs multiply in PHP
I have the following code:
<?php
$start = 1;
$timestart = microtime(1);
for ($i = 0; $i < 1000000; $i++) {
$result1 = $start * 4;
}
echo "\n";
echo microtime(1) - $timestart;
echo "\n";
...
13
votes
7answers
600 views
Where can I find soft-multiply and divide algorithms?
I'm working on a micro-controller without hardware multiply and divide. I need to cook up software algorithms for these basic operations that are a nice balance of compact size and efficiency. My C ...
4
votes
4answers
803 views
a fast algorithm to compute matrix multiplication
In the middle of a c++ code, eclipse, I need to compute the multiply of matrices A and B, with the size of 2400*3600 (so the dimensions are not the same). The matrices are stored in float two ...
3
votes
3answers
130 views
Multiply a data frame row-by-row
Input file:
df1 <- data.frame(row.names=c("w","x","y","z"), A=c(0,0,0,0), B=c(0,1,0,0), C=c(1,0,1,0), D=c(1,1,1,1))
A B C D
w 0 0 1 1
x 0 1 0 1
y 0 0 1 1
z 0 0 0 1
I want to apply an equation ...
3
votes
4answers
279 views
R - multiply various subsets of a data frame by different vectors
I would like to multiply several columns in my data frame by a vector of values. The specific vector of values changes depending on the value in another column.
--EDIT--
What if I make the data set ...
3
votes
6answers
2k views
Multiply char by integer (c++)
Is it possible to multiply a char by an int?
For example, I am trying to make a graph, with *'s for each time a number occurs.
So something like, but this doesn't work
char star = "*";
int num = 7;
...
2
votes
1answer
112 views
Factorial in bignum library
Ive tried to create my own implementation of a bignum library
I cant seem to get the factorial to work. If I ask it to solve 4!, it gives out 96. It multiplies 4 twice. similarly, 5! is 600, not 120. ...
2
votes
3answers
14k views
C#, Operator '*' cannot be applied to operands of type 'double' and 'decimal'
This error should be a simple one but I cant seem to make it work. The problem lies in the fact that this very same code works earlier in the program. I don's see any reason for it to be sending an ...
1
vote
2answers
76 views
Java - Colouring image
I've tried to create colored gray image with given colour but I always failed. I know I have to use BufferedImage and load all pixels of source image into array, but I don't know how to work with ...
1
vote
3answers
243 views
Need to do 64 bit multiplication on a machine with 32 bit longs
I'm working on a small embedded system that has 32 bit long ints. For one calculation I need output the time since 1970 in ms. I can get the time in 32 bit unsigned long seconds since 1970, but how ...
1
vote
3answers
492 views
Python array multiply
hh=[[82.5], [168.5]]
N=1./5
ll=N*hh
What I'm doing wrong? I received error :
"can't multiply sequence by non-int of
type 'float'"
I try to add float(), but this is not solve my problem;
I ...
1
vote
2answers
322 views
hint to multiply big numbers
I have to multiply two big numbers - saved as string - any hint how to do that?
1
vote
3answers
580 views
How to multiply elements of php array
I'm trying to translate a javascript function into php but having some problems with my arrays. I need to iterate over the array elements, multiplying them all by a certain amount, but it's not ...
1
vote
2answers
386 views
Multiplying complex with constant in C++
The following code fails to compile
#include <iostream>
#include <cmath>
#include <complex>
using namespace std;
int main(void)
{
const double b=3;
complex <double> ...
0
votes
1answer
22 views
iOS: GLKit matrix multiplication is broken as far as I can tell
Here's the source code. ANSWER is the correct answer, RESULT is the actual result.
Am I blind, or is it calculating a -1 for entry 33 when it should be a 1?
Here's the code:
GLKMatrix4 a = ...
0
votes
3answers
68 views
Multiplication of 2 variables
This problem has been solved guys.
Have heede jham's advice to implement bc into it and got it working.
Thanks a million stackers!
Supposingly I am working on one of my options in my program.
I have ...
0
votes
1answer
74 views
Multiplying a Matrix and a Vector
I need to multiply a matrix and a vector.
To accomplish that I have wrote a function with parameters :
float** M The maxtrix of dimensions : m x n.
float* V The vector of length n.
float* R Where ...
0
votes
1answer
27 views
multiplying values for specific line
I am a noob in programming but I need to work this out..
I am using notepad++, and I have a specific line which repeats 1000s times, and each has a different value.. One of them looks like this:
...
0
votes
0answers
30 views
jquery .clone() multiplies
I'm having this odd problem, I just tried to make a normal .clone().
But when I try to .clone() it again it multiplies!
$('.module').live('mouseup',function(e){
tree.clone(this, e);
});
And ...
0
votes
1answer
97 views
C# Multiply textboxes answer always 1
I have a problem with the following code.
bool TextBox2INT = true;
bool TextBox1INT = true;
int outputValue = 0;
int ButtonFind;
int TextBox1INT2 = Convert.ToInt32(TextBox1INT);
int TextBox2INT2 = ...
0
votes
1answer
64 views
I want to multiply total_price with vat
Equipment.objects.all()
total = Equipment.objects.aggregate(price_sum=Sum('price'))
total_price = total['price_sum']
Django newbie here. I have a decimal varible called total_price. What I want to ...
0
votes
1answer
86 views
or C++: VS2010 multiplication operator being mistaken for a null pointer
I basically have exp>=level*10 in an else if expression, where level is a variable and 10 is a constant number. The code compiles completely fine without any errors, and it even worked after being ...
0
votes
1answer
172 views
How do you multiply numbers in C# through the cmd?
I am trying to run a program that asks for a number and the user will type a number in, it will then and for a second number and the user will enter another number, the product will then give the ...
0
votes
2answers
174 views
Mysql multiply count
I have a query, which will loop through an orders table, and as a sub query, will also count the number of rows in another table using a foreign key.
SELECT eo.*, (
SELECT COUNT(*)
FROM ...
0
votes
3answers
234 views
How can a query multiply 2 cell for each row MySQL?
I want to multiply 2 cells for each row and put the value of that in the last column called Total. Can this be done by a normal query?
Example:
Pieces | Price | Total
6 | 4 | null // ...
0
votes
1answer
235 views
how do multiply different sized matrices in c
I'm looking for a way to multiply a 2x1 and a 2x2 matrix together but my code doesn't work almost every time and even when it does work I have to put the numbers into the code. It doesn't wok if i try ...
0
votes
4answers
656 views
Convert minutes into seconds in php
I have a time related php question!
I have html input boxes that asks the user for minutes and seconds like so:
<input type="text" name="n" size="2">minutes
<input type="text" name="s" ...
0
votes
1answer
143 views
MATLAB: Function that computes the coefficients of the polynomial that is formed by multiplying 2 other polynomials
I need to come up with a MATLAB function that computes the coefficients of the polynomial that is formed by multiplying 2 other polynomials.
I know that I need to somehow use conv(a,b) or something ...
0
votes
7answers
949 views
Multiply a string in Java
I have a String which contains a number and I would like to multiply that number with 1.28
Here is how the string is assigned
String PRICE = dataRecord.get( "PRICE" );
0
votes
2answers
307 views
Multiplication In MASM611
hii i have a problem in multiplication for above 5 bits i'm working in MASM611 plz tell me the solution which is for atleast 8 bit multiplication in MASM611
0
votes
2answers
449 views
How can I comine two 32-bit registers into a 64-bit answer?
I am using the pcsim program which I believe uses MIPS. I'm not positive as I am very new to assembly language. I need to multiply two 32-bit numbers using only add and shift and store the product in ...
0
votes
2answers
238 views
multiplication in multicycle datapath write from stratch
I wanted to know how the processor does multiplication in a multi-cycle data-path right from the beginning i.e from Instruction Reading -> decoding the instruction-> reading register files etc.
In ...
0
votes
3answers
472 views
Multiplying char and int together in C part 2
If I do the following:
int c0 = CHAR_MAX; //8 bit
int c1 = CHAR_MAX; //8-bit
int i = c0*c1; //store in 32-bit variable
printf("%d\n", i); //prints 16129
We can see that there is no problem with to ...
0
votes
1answer
423 views
How can I print a number larger than 32 bits in mips assembly?
In my mips assembly code, I used the multi instruction to multiply 2 large numbers since the result could not fit in one register. This means that the number is saved in the hi and lo special ...
0
votes
3answers
339 views
SQL-Doesn't return a value when the columns are multiplied
I have 3 columns in my db table, I need to multiply column, itm_count & itm_price and output the total for a given id(itm_id).
SELECT sum(itm_price * itm_count) as total FROM ods_temporder WHERE ...
0
votes
1answer
227 views
When I'm multiplying a float using multu, should I ignore the result in the LO register?
In our project, we take two floats from the user, store them in integer registers, and treat them as a IEEE 754 single precision floats, manipulating the bits by masking. So after I multiply the 23 ...
-7
votes
1answer
96 views
“large ”number multiplication [closed]
Problem:
Alice loves math. So she can multiply two large numbers very quickly. She asked Bob if
he can do the same. Bob thought of writing a program in C to do the same and asked
you for help. Help ...