The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
62 views

Removing the column(s) from matrices in a fast way C++

Suppose that we have matrix A (m*n) stored in packed form (1-d array of size m*n - with leading dimension - columns). I need to get reduced matrices A(S) - which are resulted from deletion of 1 or ...
2
votes
1answer
101 views

Assembly - assembly code that suppose to convert hex to dec not working

I have this assembly code (linux 80x86 nasm) that suppose to convert hex numbers to dec: my_func: push ebp mov ebp, esp ; Entry code - set up ebp and esp pusha ; Save ...
0
votes
1answer
25 views

Unsual behaviour while multiplying an integer value with value fetched from a xml document in php

I am using this script to find out daily visitor and total pageview for the day. <?xml version="1.0" ?> - <aws:UrlInfoResponse xmlns:aws="http://alexa.amazonaws.com/doc/2005-10-05/"> - ...
0
votes
2answers
75 views

Creating an ARM Dissassembler Need help on MUL Instruction (ARM Assembly)

I am trying to create a disassembler for ARM as I want to learn ARM assembly language. I have read from another StackOverflow thread that this is the best way to do it. So one thing I am having ...
0
votes
1answer
191 views

How to blend 2 images with PHP (GD-GD2 Library) like multiply, colorburn, colordodge and others

I want to blend two images – like multiply, overlay and other blend modes – in PHP with GD library. My images = İmage1.jpg -- imageblend.jpg or image3.png Please help me write examples ...
0
votes
2answers
82 views

Multiplying column by value returns “not a single-group group function” error

I have created a table which records the number 3_point_attempts and 3_points_scored in basketball for a single match. What I would like to do is multiple the values of 3_point_attempts*1.5 and ...
0
votes
1answer
59 views

Force to upload 1 image with the same name in Codeigniter

I have made an image upload page. this all works smooth. My problem is when i upload an image called filename.jpg and i upload it again the same image uploads but changes the name to filename1.jpg ...
1
vote
3answers
46 views

How to make a Struct that can be multipled using *

XNA framework for .net has a really useful Object called vector2 that represents a 2d vector..You can multiply them by ints, floats and other Vector 2s Eg. Vector2 bloo = new Vector2(5, 5); ...
0
votes
0answers
118 views

How to multiply 2 images in JavaCV

I currently have a binary black and white image that I have used cvThreshold on, and I would like to get the color back on the white part of the image. From my understanding multiplying the original ...
0
votes
2answers
255 views

multiply each number inside arraylist

Write a program that allows a user to enter a number of values, the program should then convert the values entered in pounds (GBP) into a number of different currencies. The menu should look ...
1
vote
5answers
192 views

How to multiply in Javascript? problems with decimals

i've the following code in Javascript: var m1 = 2232.00; var percent = (10/100); var total = percent*m1; alert(total); The problem is that the variable "total" gives me "223.20000000000002" and it ...
0
votes
2answers
140 views

Python CSV Comparison with multiplication

I want to double-check my logic on how to put this together in Python, so examples are appreciated. I need to compare 2 CSV files (same format exactly with 2 rows and 6 columns) and provide the ...
0
votes
0answers
10 views

Multiplying rows to previous row in a data frame

I have a large data frame where I need to determine how to multiply a row to the previous row in a loop, and come up with another data frame with the answers. e.g. x y z - [1] 1 3 3 ...
0
votes
1answer
66 views

sql columns multiplication error

i m trying to execute multiply function in sql but it doesnt compute d values. d problem is i forgt to create a total row to store the multiplied values n i cant create a new table or add d row.. here ...
4
votes
2answers
64 views

mysql: how to sum multiplied partials

Having tables like: sold_items: code | size | quantity abc123 | small | 4 abc123 | medium | 2 xyz987 | small | 3 xyz987 | medium | 1 xyz987 | large | 2 price_list: code | size | ...
1
vote
3answers
183 views

MySQL - Multiply columns by alias

I am trying to get a number of images for an item group but cant seem to get the multiplication to work with the alias assigned. I have tried the script below with some modifications but every thing I ...
1
vote
0answers
153 views

Magento - Multiply Shipping Cost for Weight amount

I'm using Magento ver. 1.7.0.0 with Matrix Tables to calculate the shipping cost. I set my CSV file to different cost for weight amount and destination. My CSV il like this: Paese Regione/Stato ...
0
votes
1answer
184 views

Java-Junit: multiplying 2 polynomial expressions

I am creating a method to multiply 2 polynomial expressions together such that: 3x^5 * 2x^3 = 6x^8 -> Where the coefficients are multiplied and the exponents are added together. My test case for ...
2
votes
3answers
425 views

pandas dataframe multiply with a series

What is the best way to multiply all the columns of a Pandas DataFrame by a column vector stored in a Series? I used to do this in Matlab with repmat(), which doesn't exist in Pandas. I can use ...
6
votes
4answers
251 views

Measuring time in C

I'm trying to measure some activity in C (Matrix multiplying) and noticed that I should do something like this: clock_t start = clock(); sleep(3); clock_t end = clock(); double elapsed_time = (end - ...
1
vote
0answers
52 views

Multiply TranslateAnimation in AnimationSet dont work

I want my ImageView to first go from the center of the screen and outside the screen on the left side, then I want it to move from outside the screen on the right side and into center of the screen. ...
3
votes
2answers
253 views

Timedelta multiply with float in python

I have two dates and can calculate timedelta as usual. But I want to calculate some percent with resulting timedelta: full_time = (100/percentage) * timdelta But it seems that it can only ...
0
votes
4answers
193 views

How to multiply a variable?

<script type = "text/javascript"> //Add spaces between menu links //Placement: Global Header //Coded by Game var spaces = "2"; //Edit number of spaces between menu links (1,2 or 3) var a = ...
0
votes
1answer
177 views

Multiplying polynomials with numpy.convolve return wrong result

I'm trying to multiply two polynomials using the numpy.convolve function. I thought that this would be really easy, but I found out that it does not always return the correct product. The ...
1
vote
1answer
1k views

SQL multiply and round in select statement

In part of my select statement, I want to round the value to two decimals. The select has a multiplication where I take one column's value and multiply it by another and divide by 100. I want this ...
2
votes
4answers
137 views

Is there a standard way to multiply fractions?

I need to have access to both denominator and numerator so I can't just multiply two Floats. Should I write my own class and have operator overload (*) or are their known libraries that offer that?
0
votes
0answers
169 views

Notepad regex multiplying operator

How to use multiplying operator in Notepad++ by specifying how many copies it applies to? The manual tells (and as far as I know it is standard) to use {n}. But this doesn't work. For example, if I ...
0
votes
1answer
371 views

Xcode multiply 2 int's for a result

I have two integers int Score; int MainInt; Im wondering how to multiply the int values for one single, non decimal answer that i can display in a label. Im very confused. Thank you.
1
vote
1answer
81 views

Query to aggregate amount across different rate categories as applicable per usage

Scenario: I need to calculate sum of amount applicable to each client based on their hourly rates and time(minutes) they offered/received services in different rate categories. Using the following ...
0
votes
3answers
492 views

How to multiply in Java

I am making a button that when pressed it multiplies a number by two but i keep getting an error saying invalid assignment operator and the red is underling the * which should mean multiply in java ...
0
votes
1answer
410 views

How to Multiply two Column values and display its Result at the end of each Row?

http://www.koolfree.com/ImageUpload/uploads/1340729929.jpg (Table Image) Hello, I have linked to an Image (because stackoverflow was not allowing me to upload due to less than 10 reputation) in which ...
0
votes
1answer
792 views

Using javascript to get value from numeric text input and multiply it by radio button

very new to javascript. As far as I can tell other similar questions have been asked but i need a solution to bring it all together. Any and all help will be greatly appreciated! I have the following ...
3
votes
2answers
294 views

Multiplying doubles in java?

I'm trying to multiply the same double (square it) but the number comes out wrong. When i display the double by itself the number is correct but when i multiply it by itself it comes up with the wrong ...
-4
votes
1answer
431 views

How to multiply int arrays? [closed]

I m trying to write my own arithmetic system to multiplytwo int arrays. For example I have already done addition and now i try to multiply both arrays. Anyone could help me to write this algorithm ? I ...
1
vote
1answer
159 views

multiplying and rounding numbers using sed

I have the following question for the scripting experts: how to multiply the number i.e. 12.34567 by 100 and then round it to two decimals using sed? Thanks in advance! Irek
0
votes
2answers
4k views

python dot multiply two lists

I want to perform a dot multiply (element wise multiplication), to multiply two lists together by value: a = [1,2,3,4] b = [2,3,4,5] a.*b = [2,6,12,20] in Python. (That works in Matlab) A List ...
0
votes
2answers
143 views

Wrong result in multiplying in javascript [duplicate]

Possible Duplicate: Is JavaScript's Math broken? I have two variables var first : float = 200; var next : float; next = first * 1.2; and when i write in debug log "next" it gives ...
1
vote
1answer
267 views

Python Calculations, using tuples, lists. Python 2.7

Okay so to start off. I have a list of tuples that have a user and then a list of their book ratings as the second item. For example: [('Ben', [5, 0, 0, 0, 0, 0, 0, 1, 0, 1, -3, 5, 0, 0, 0, 5, 5, 0, ...
1
vote
4answers
635 views

JavaScript multiply not precise

I came accross a weird problem, I want to do some basic math checks. I have read to avoid floating numbers so I decided to multiply my math values with 10000, because my value can be between 0.9 and ...
0
votes
1answer
330 views

multiplying 2 2D arrays using fork()

i am trying to multiply a[2][3] with b[3][4] and put the answer in c[2][4]. I have to use fork() and make 2 processes, each child for c[0][j] and c[1][j], parent will wait. So each child process will ...
-2
votes
1answer
843 views

error: parser: instruction expected

NASM is not parsing command ' mull byte [bp+10] ' in the printstr subroutine of my program. i have rechecked the code with the lecture instructions and cannot phathom why it is doing so. also, it does ...
1
vote
2answers
529 views

Using Python to multiply/divide columns in CSV files

So I have a number of CSV files with 6 columns of numbers in each file. I would like to perform a few operations (multiplication, division etc.) on each column in each of the CSV files using Python. ...
0
votes
1answer
986 views

How to multiply price and tax percentage to get tax amount automatically with javascript?

I want to multiply price and tax percentage to get tax amount automatically with javascript. After I input the price and tax percentage, the text field of tax amount automatically changes into the ...
3
votes
2answers
156 views

Do modern cpus skip multiplications by zero?

I would like to know if current cpus avoid multiplying two numbers when at least one of them is a zero. Thanks
1
vote
1answer
366 views

C/C++/ASM : Multiply Add a=a*2+b on CPU?

The classical Multiply-Accumulate operation is a = a + b*c. But I currently wonder if there exist an ASM instruction that allow to do the following operations on integer in 1 clock cycle : (a and b ...
1
vote
2answers
743 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
875 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
116 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
127 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: ...
18
votes
3answers
535 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"; ...

1 2