Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
2k views

Android Java : How to subtract two times?

I use some kind of stopwatch in my project and I have start time ex: 18:40:10 h stop time ex: 19:05:15 h I need a result from those two values like final time = stop - start I found some ...
5
votes
7answers
9k views

Subtracting one row of data from another in SQL

I've been stumped with some SQL where I've got several rows of data, and I want to subtract a row from the previous row and have it repeat all the way down. So here is the table: CREATE TABLE foo ( ...
4
votes
6answers
3k views

Algorithm to add or subtract days from a date?

I'm trying to write a Date class in an attempt to learn C++. I'm trying to find an algorithm to add or subtract days to a date, where Day starts from 1 and Month starts from 1. It's proving to be ...
4
votes
2answers
1k views

Subtracting long numbers in javascript

Why is q == 0 in the following script? <script> var start = 1234567890123456789; var end = 1234567890123456799; var q = end - start; alert(q); </script> I would think the ...
4
votes
1answer
450 views

JQuery: Detecting a Browser Resize

I am using this script from snipplr, How would I set it so the container div is 100px less than the newWindowHeight height, like -100 or something. <script type="text/javascript" ...
3
votes
5answers
226 views

Java Glitch? Subtracting numbers?

Is this a glitch in Java? I go to solve this expression: 3.1 - 7.1 I get the answer: -3.9999999999999996 What is going on here?
3
votes
2answers
221 views

Qt: How to subtract two QSet of QString in case insensitivity mode

I'm working on a logical problem using Qt. I've got two QSets of QString: QSet<QString> set1: [ "aaa", "BBB" ] QSet<QString> set2: [ "aaa", "bbb", "ccc", "ddd" ] I want to subtract set1 ...
3
votes
10answers
16k views

Subtract n hours from a DateTime in Ruby

I have a Ruby DateTime which gets filled from a form. Additionally I have n hours from the form as well. I'd like to subtract those n hours from the previous DateTime. (To get a time range). DateTime ...
2
votes
4answers
149 views

How to create a subtract method in a Math class?

I am studying OOP and this is my first study project. I created a Math class and also created an add method. But when I am trying to create a subtract method I don't know where I am getting a ...
2
votes
2answers
223 views

How to subtract from list of numbers individually?

What i want to do is subtract from list on numbers just one number. for example i have in a table following numbers and i want to subtract 4000 <table> <thead> <tr> ...
2
votes
1answer
2k views

Subtract 1 year from datetime

I have seen a lot of info on how to subtract one datetime from the other and how to add years on to a datetime. but the following is giving me a headache.... When a user inserts a record a hidden ...
2
votes
1answer
741 views

Subtract array from another in .net

Is there any easy way to remove the contents of one array from another?
1
vote
2answers
65 views

Prolog - subtract each item only once

when I use prolog's built-in predicate "subtract/3" : subtract(+Set, +Delete, -Result) in for example: subtract([a,b,c,d,c,c,d,e], [c,a], X). X = [b, d, d, e]. but I want to subtract each ...
1
vote
1answer
60 views

JPQL time interval

What I'm trying to do is quite simple in sql but I can't get it to work with JPQL. The problem is that my date formats don't match each other. In my database the date is stored like 2011-12-04 ...
1
vote
2answers
156 views

How to represent / Modify 3d solids

In my program I have some cubes (simple, xyz location, xyz size). I want bo be able to take one of these cubes and 'Subtract' another cube from it. So my question, what is a good generic data ...
1
vote
1answer
1k views

Subtract two time values in ms sql server 2008

How to subtract two time values in sql server 2008.I am using time variables in stored procedure. please help
1
vote
2answers
1k views

PHP Subtract First Character of String

I know this is simple, and I've done it before, but I've forgotten how to do it. How might I, in php, subtract the first letter of a string? For example: FOOBAR would become OOBAR I think its ...
1
vote
4answers
2k views

How to subtract a month from Date object?

How do I subtract a month from a date object in VB.NET? I have tried: Today.AddMonths(-1) However, given that Today is 01-Jan-2010, the result I get is 01-Dec-2010. The answer I want is ...
1
vote
6answers
2k views

javascript subtract(-) keycode

ok, i need my code to check if minus/subtract/- was pressed, if it was pressed i want an alert box to pop. i tried with both 109 and 189 key codes but i still don't get the desired result. although i ...
1
vote
1answer
604 views

What method is needed to have the “-” ( subtract ) method working with Ruby arrays?

If I have two arrays a and b, what method should the object contained have to override so the subtract method - works properly? Is it enough with eql? EDIT I'm adding more detail to my question. ...
1
vote
1answer
248 views

MySQL how to remove records in a table that are in another table

I have table A with close to 15000 entries. I have a second table B with 7900 entries with a common field with table A. I need to extract into a third temporary tableC all entries from table A ...
0
votes
1answer
72 views

How to Subtract Two Rows which Have One Matching Value in a Column

I'm comparing sales for same week of different year. Like first week of 2010 and 2011. So with my query I get such results. week|year|sales 1 |2010|5 1 |2011|10 2 |2010|7 2 |2011|13 My ...
0
votes
0answers
41 views

How to subtract lines of text files from each other in Notepad++

Suppose there are two text files, each with a couple thousand URLs, separated by new lines. http://url1 http://url2 http://url3 etc How is it possible to subtract the lines (or ...
0
votes
2answers
132 views

Add/Subtract cells in UITableView

In my app, I have a UITableView with 3 cells. If the user selects one of the top two cells, they can change the value using a UIDatePicker to make it say for example "November 11, 2011". Is there a ...
0
votes
3answers
60 views

Perforce - removing delta per given changelist range

I got a small question with a big background. Let me ask a short version and then expand it a little bit. Short version of my question is as follows. Imagine a situation - you have branch A with ...
0
votes
1answer
180 views

Simply JQuery math syntax- how do I subtract?

Hello wonderful community, I am trying to do some really simple math with JQuery, but I can't find a cheatsheat with math syntax on it (that is relevant to what I'm trying to do). I know how to do ...
0
votes
2answers
1k views

How to subtract a vector from each row of a matrix? [closed]

Possible Duplicate: How can I divide each row of a matrix by a fixed row? I'm looking for an elegant way to subtract the same vector from each row of a matrix. Here is a non elegant way ...
0
votes
2answers
249 views

Subtraction of two dates in django query

class Case( models.Model ): created = models.DateTimeField() modified = models.DateTimeField() STATUS = ( ('Active', 'Active'), ('Hold', 'Hold'), ('Expired', ...
0
votes
0answers
108 views

Subtract two polygons in google map

I'm drawing three polygons on Google map that the first one is in the second and the second is in the third. I want to get the subtract of them in javascript as another shape . P3-P2 ? P2-P1 ?
0
votes
1answer
126 views

subtract from symbols in ruby

I would like to find the first valid image among a list in ruby. Here is my code: if(params[:id]) @image = Image.find_by_id(params[:id]) while @image.nil? :id-- ? @image = ...
0
votes
1answer
225 views

Subtract time on specific lines using php

Using php I'd like to subtract/minus two times; each time within a separate document and thereafter have php write the result (Result after subtracting the two times) within another single text ...
0
votes
3answers
2k views

Quick Java question: Cloning and subtracting sets - does this work?

private HashMap<DataObject, HashSet> AllDataObjects; ... /** Returns all DataObject elements that are NOT in the specified set. */ private DataObject[] invert( HashSet<DataObject> set ) ...
-2
votes
1answer
110 views

SML: subtract one list from another list

What is the easiest way to subtract one list from another? Do I need to use ListPair to solve this task? Notic that I need to compare ROWS, not single elements. For instance, there are two lists "L1" ...
-3
votes
1answer
44 views

Adding or subtracting to fields in Access

Is there a way to take out or add some amount to a numerical field in Access without manually changing the value?