Tagged Questions
The subtraction tag has no wiki summary.
26
votes
11answers
2k views
Why is subtraction faster than addition in Python?
I was optimising some Python code, and tried the following experiment:
import time
start = time.clock()
x = 0
for i in range(10000000):
x += 1
end = time.clock()
print '+=',end-start
start = ...
11
votes
6answers
18k views
Anyone know a simple way using java calendar to subtract X days to a date?
Anyone know a simple way using java calendar to subtract X days to a date?
Sry not being able to find any function which allows me to directly subtract X days to a date in java, if anyone could point ...
5
votes
2answers
90 views
Perl Datetime subtraction problem
I've got a little problem by subtracting two datetime objects from each other. I use the following code:
$today = DateTime->now( time_zone => 'Europe/Berlin' );
my $dt1 = DateTime-> new (
...
5
votes
3answers
2k views
PHP: simplest way to get the date of the month 6 months prior on the first?
So if today was April 12, 2010
it should return October 1, 2009
Some possible solutions I've googled seem overly complex, any suggestions?
4
votes
4answers
110 views
Integer subtraction with wrap around for N bits
Basically, the behavior you get when overflowing integers with subtraction, but for a given number of bits. The obvious way, assuming a signed integer:
template <int BITS>
int sub_wrap(int v, ...
4
votes
3answers
426 views
Assembly 8086 - Example of subtracting 2 numbers and setting the carry flag?
I've been reading around and with the 8086 Instruction Set, it says that a CMP (compare) can set the Carry Flag. I understand that a compare subtracts two operands but I was wondering if anyone can ...
4
votes
1answer
117 views
How does Array#- (subtract operator) compare elements for equality?
When I call Array#- it doesn't seems to call any comparison method on the strings I'm comparing:
class String
def <=>(v)
puts "#{self} <=> #{v}"
super(v)
end
def ==(v)
...
4
votes
5answers
3k views
How to subtract one bitmap from another in C#/.NET?
I have two bitmaps, produced by different variations of an algorithm. I'd like to create a third bitmap by subtracting one from the other to show the differences.
How can this be done in .NET? I've ...
3
votes
1answer
100 views
How to subtract one list of map keys from another and get new map (map A - mab B = map C)
So I have 2 std::maps <string, shared_ptr<file> > one is 'old' one is 'new' I want to get what files were removed and so be capable to iterate thrue differene and do some stuff to ...
3
votes
2answers
511 views
Matlab - Quickly subtract [1xN] array from [MxN] matrix elements [closed]
Possible Duplicates:
How to subtract a vector from each row of a matrix?
How can I divide each row of a matrix by a fixed row?
I have matrix (M1) of M rows and 4 columns. I have another ...
3
votes
1answer
135 views
Bag difference (similar to setdiff() but not for sets)
In R, is there some easy way to do multi-set (i.e. "bag") differences, similar to setdiff(), but preserving order and multiplicity in the input vectors?
For example, suppose x <- ...
3
votes
5answers
763 views
Floating Point Subtraction in C results zero
I have a code wriiten in C which is intended for a 16-bit microcontroller.
The code essentially does lot of floating point arithmatic.
The arithmatic works fine till the result is positive; but in ...
2
votes
3answers
43 views
Best way to check if variable exists before subtraction?
I have a variable, for example $total1. It has a value from the database, for example 6.
Now I do an SQL query and it gets some numbers from tables. For example this:
$subtraction1=5, but it is in a ...
2
votes
4answers
83 views
How to subtraction two list in python
I can't figure out how to make a function in python that can calculate this:
List1=[3,5,6]
List2=[3,7,2]
and the result should be a new list that substracts List2 from List1, List3=[0,-2,4]!
I know, ...
2
votes
2answers
108 views
Unwanted rounding when subtracting numpy arrays in Python
I'm running into an issue with python automatically rounding very small numbers (smaller than 1e-8) when subtracting an array from an single float. Take this example:
import numpy as np
float(1) ...
2
votes
2answers
416 views
Ruby- Adding/subtracting elements from one array with another array
I do this:
a = [1,2,3,4]
b = [2,3,4,5]
c = b - a
put c
I get this
answer -> [1]
I want this answer -> [1,1,1,1] (like matrix addition/subtraction)
I tried this:
c.each {|e| c[e] = b[e] - ...
2
votes
1answer
228 views
MySQL - subtracting certain rows of a table and presenting the results alongside other rows
I have been struggling with getting this query right for hours now. I have a huge amount of data and I want to show just the departments with IDs 10,15,18 and 25. From here, I want to subtract the ...
2
votes
1answer
2k views
Subtracting dates with Ruby
I'm just having a look at ruby and was playing with the date/time thing.
irb(main):001:0> jamis_DOB = Time.mktime(2003, 10, 22, 06, 59)
=> Wed Oct 22 06:59:00 +0300 2003
irb(main):002:0> ...
2
votes
2answers
246 views
Java regex predefined character class nested inside character class
I need to use a regular expression that contains all the \b characters except the dot, .
Something like [\b&&[^.]]
For example, in the following test string:
"somewhere deep down in some ...
2
votes
2answers
302 views
how to subtract circle from an arbitrary polygon
Given an arbitary polygon with vertices stored in either clockwise/counterclockwise fashion (depicted as a black rectangle in the diagram), I need to be able to subtract an arbitrary number of circles ...
2
votes
2answers
1k views
Mysql auto fill field based on value of two other fields?
I know its possible to autoincrement values, but i was wondering if its possible to fill a field based on the value of two other fields. I have a table with the fields:
CREATE TABLE pligg_links (
...
2
votes
2answers
1k views
Implementing floating point subtraction
all I am trying to implement a floating point arithmetic library and I have trouble understanding the algorithm of subtracting floats. I have implemented addition succesfully and I thought that ...
2
votes
3answers
594 views
Subtraction of MySQL times inconsistent on different machines
I have a MySQL query structured as follows:
SELECT time(c.start_time),
time(c.end_time),
time(c.end_time) - time(c.start_time) as 'opening_hours'
FROM my_shop c;
The data in start ...
1
vote
4answers
42 views
Numeric values rounding down unexpectedly
I have a loop that calculates a couple revenue values then adds them together, like this:
$SalesGrowth = $C2012Sales+$C2011Sales;
In some cases, this works, and I get the expected, e.g.: 761.9 + ...
1
vote
3answers
150 views
How does an adder perform unsigned integer subtraction?
Suppose that A and B are signed positive integers, then for A-B, it's calculated using A+2's complement of B.
For example, in a 4-bit binary system, for signed integers, we have
...
1
vote
2answers
67 views
creating one new data frame applying one function over existing one
I'm trying to create a new data frame using an existing one with data in pairs
TargetID A1 A2 B1 B2
cg00000108 0.94483140 0.959417300 0.94427000 0.956393400
...
1
vote
1answer
78 views
Subtracting by Dictionary Values from Iterated Total in For Loop Python
Working in Python 2.7.
I have a dictionary with team names as the keys and the values are contained in lists. The first value is the amount of runs the team scored, the second is runs allowed:
NL = ...
1
vote
6answers
99 views
Subtract and add two lists without changing their order in Python
If I have the list [68,31,93,35,10] (all the numbers will be different) and the list [93,0,22,10,99,33,21,9] (again, all the numbers will be different, but may overlap the other list), I need to be ...
1
vote
3answers
168 views
Flex 3 Actionscript Array Subtract function
Can anyone tell me how to compare two arrays and delete the common terms in ActionScript?
Eg:
Array1 = [2,4,6,8,10,12]
Array2 = [1,2,3,4,5,6,7,8,9,10,11]
Array1 - Array2 = [12]
1
vote
2answers
128 views
Access 2007 running subtraction?
I know access has a running addition. but how can i possibly do a running subtraction on a report? I've exhausted all my outlets and I cannot figure it out.
1
vote
1answer
215 views
Unsigned binary subtraction when numbers are too large to form two's complement
I am in computer architecture and my prof. hasn't been able to give a satisfactory answer.
Assuming we have a 32-bit processor, if we have two unsigned integers x and y, both of which are greater ...
1
vote
2answers
558 views
Subtract one time from another - bash
I have a text file that contains date, and two time-strings separated by spaces (a lot of these) in the format as given below:
2011-03-05 15:16:41 15:16:42
My question is this:
Using awk, how ...
1
vote
3answers
179 views
Why is binary subtraction always (?) done by adding the complement?
I'm looking for a good explanation why (not how, I know that) binary subtraction is always (?) done by adding the complement etc. Is it just because of the extra logic gates that would be necessary or ...
1
vote
2answers
803 views
Problems with a shunting yard algorithm
I have successfully implemented a shunting yard algorithm in java. The algorithm itself was simple however I am having trouble with the tokenizer. Currently the algorithm works with everything I want ...
1
vote
2answers
278 views
SQL Date Subtraction Between Two Years
I am having an issue with a query I am trying to convert from MS Access. The query flags record for removal when it is older than 90 days but when I convert this query to sql server is is removing too ...
1
vote
0answers
69 views
Bounding box boolean subtraction?
What's the best or an efficient method for subtracting a bounding box from another bounding box (I.e. Creating n bounding boxes from a bounding box Boolean subtraction)?
Ideally the resulting ...
1
vote
1answer
157 views
why is python inconsistent when interpreting a subtraction when making a list?
I am making a small program and at some point from each row of a matrix I need to subtract the average of the row itself. Quite a standard renormalization procedure.
Note in the code
def ...
1
vote
3answers
777 views
how to subtract a constant number from a column
Is there a another way to subtract the smallest value from all the values of a column, effectively offset the values?
I have to subtract the first number in teh 1st column from all other numbers in ...
1
vote
7answers
167 views
Subtraction - Order of Evaluation
Is it standard across all languages for the following to yield the value 3?
Print(6 - 2 - 1)
In other words, are there any languages that will evaluate " 2 - 1 " before " 6 - 2 "?
I'd like to make ...
1
vote
2answers
2k views
EmguCV/OpenCV Image addition/subtraction
I am using EmguCV and am trying to subtract 2 images to create a filter similar to AForge .NET's MoveTowards filter.
This is what my slightly modified version from the above URL tries to do. Given 2 ...
1
vote
5answers
6k views
Subtraction between two sql queries
I have 2 queries in MS SQL that return a number of results using the COUNT function.
I can run the the first query and get the first result and then run the other one to get the other result, ...
0
votes
2answers
33 views
PLSQL - How to subtract time (hh:mi) on timestamp type
I have two fields with timestamps type, time_in and time_out.
For example:
time_out = 02-MAY-11 07.30.00.000000 PM and time_in = 02-MAY-11 07.57.00.000000 AM
I want to get the different HOURS from ...
0
votes
4answers
56 views
PHP Subtraction
I have to subtract a number from another number, but the script must verify that this is possible without giving a negative number.
For example, the client's credit is $5.00. They want to make a ...
0
votes
1answer
33 views
negative numbers floating point subtraction circuit
probably wrong place to ask but I will try.
I have to design a circuit that would add/subtract floating point
I tried to do it using signed magnitude numbers in IEE 754 standard.
They are quite ...
0
votes
0answers
38 views
Subtracting float in android gives me larger number
I cannot figure this one out, but I cannot seem to get android to ever cooperate with simple math. I have created a ZoomControls that changes text size of a TextView. Seems simple. I increase the font ...
0
votes
1answer
44 views
PHP Subtraction Returning Infinite Number
I have an array that store data. If I subtract two arrays I get an infinately big number. Here is an example
$i[1] = 2.14;
$i[2] = 2.15;
$diff = $i[1] - $i[2];
echo $diff;
The output of this code ...
0
votes
3answers
37 views
Subtraction in JavaScript only returns two digits of the thousands
I have two variables holding integer values:
x = 36,000;
y = 18,045.40;
this is how i subtract:
z = parseInt(x) - parseInt(y);
the result is 15.
If i remove the parseInt the result is 'Nan'.
...
0
votes
1answer
76 views
Subtract the previous row of data where the id is the same as the row above
I have been trying all afternoon to try and achieve this with no success.
I have a db in with info on customers and the date that they purchase products from the store. It is grouped by a batch ID ...
0
votes
3answers
62 views
I can't seem to subtract one variable from another
I'm working on a simple game and I've gotten as far as coding it so that when you click on an attack button it should generate a random number based on a base and strength then subtract that from the ...
0
votes
2answers
54 views
Subtraction with php and mysql
I am developing a joomla extension and in default.php file i have this code:
foreach($this->subv as $subv) {
$giorni = ((int)$subv->data_fine - (int)$subv->data_inizio);
$ore = ...