The subtract tag has no wiki summary.
0
votes
3answers
24 views
Counting a hrefs then subtracting
$(function() {
var getName = $('#fa_welcome').text();
var myName = getName.replace('Welcome ',"");
var a = $('#recent_topics').find('a[href*="/u"]').filter(':contains("'+myName+'")').length;
var b ...
0
votes
1answer
76 views
datetime difference with php
I've viewed a few posts on this, but I'm still a bit confused on how it works.
I want to compare 2 times. The first time is the time NOW and the second time is a datetime coming from the database. ...
0
votes
2answers
42 views
Mysql subtracting values using row selected from min timestamp, grouping by id
I've been at this for a few hours now to no avail, pulling my hair out.
Edit: Im wanting to calculate the difference between the overall_exp column by using the same data from 1 day ago to calculate ...
0
votes
2answers
96 views
How to subtract values from textbox in form from Field in table (Access '07 VBA)?
I am developing a canteen transaction system in MS Access 2007. In my "Add Food Item:" form, I have a series of textboxes and comboboxes, a button, "Add Item" and a listbox. The names of text and ...
0
votes
1answer
35 views
Subtracting using minus function in alloy
I have created a vending machine it works fine. I want to subtract 1 from the quantity of items once the transaction is completed. I have provided comments in my code for understanding. Ignore some of ...
0
votes
0answers
9 views
Cheetah Template subtract
I'm using a checkout app as POS where you can create your own reports which are based on cheetah. What I'm trying to do is subtract two values from each other.
One is:
...
0
votes
2answers
84 views
Subtract top two rows from one column using one id
does anyone know how can I subtract top two rows from one column only using one id? Here's my sample query:
SELECT top 2 a.consumption,
coalesce(a.consumption -
...
-2
votes
1answer
108 views
How I do a subtraction 2 numbers in a sequential circuit?
I need to do a circuit in which I subtract 2 numbers. I believe I need to use the SUM and a sign bit, and some masks, but I cannot figure out how to put it together.
[LATER EDIT]
i tried to do ...
0
votes
2answers
116 views
Removing elements from an array in C
I just have a simple question about arrays in C
What's the best way to remove elements from an array and in the process make the array smaller.
i.e the array is n size, then I take elements out of ...
0
votes
0answers
16 views
Subtract rows at two time steps by group in R
I have a dataset that looks like below:
SRecord Species TStep BAU GFDL
1 abiebals 0 1.0913 1.190
2 acerrubr 0 3.192 3.097
1 abiebals 300 ...
1
vote
2answers
200 views
how do I subtract single textbox values with multiple textboxes values using Javascript?
i have code but problem is that i can result from when i subtract total textbox value and advance textbox value which is equals to balance textbox. But after getting subtracted values into balance ...
1
vote
4answers
158 views
subtracting two days from current date in epoch milliseconds java
I am trying to do something really simple. I am trying to subtract 2 days from the current day. I get the number of hours from the UI. So in this example, I get 48 hours from the UI. I am doing the ...
2
votes
2answers
144 views
finding difference between two rows in the same column using R programming
So basically, I have this code that let me seperates my Time column into 50 hour intervals
This is the code....I need help in writing the difference (diff- I put a blank space below) function...I ...
-2
votes
1answer
103 views
R programming - How to find the difference between two values in specific rows [duplicate]
So As you can see I have a price and Day columns below
Price Day
2 1
5 2
8 3
11 4
14 5
17 6
20 7
23 8
26 9
29 10
32 11
35 12
38 ...
1
vote
3answers
130 views
How to extract certain rows
So As you can see I have a price and Day columns below
Price Day
2 1
5 2
8 3
11 4
14 5
17 6
20 7
23 8
26 9
29 10
32 11
35 12
38 ...
0
votes
0answers
77 views
bsxfun do not subtract from same element and 1st columns
I have a D file (98 rows and 2 columns) and M file(17 rows and 2 col). I needed to find difference between 1st row and all rest, 2nd row and all rest ..excluding those rows of which 1st column has ...
1
vote
1answer
211 views
how to subtract one frame from another using opencv in android
i am working on frames of a video and i want to subtract one frame from other to find out the difference but i dont know how to proceed. i tried converting my bitmap frames into mat and then ...
0
votes
0answers
82 views
Error using imsubtract : X and Y must have the same size and class or Y must be a scalar double
i have generated a sobel operator applied image and a 1x2 operator applied image and i have analyzed their gradient magnitude and direction. now i am trying to subtract these 2 images with ...
0
votes
0answers
15 views
subtracting a 1x2 operator applied image from a sobel operator applied image. : error in imsubtract()
i have generated 2 images, one by sobel operator and 1 by 1x2 operator. now i am trying to subtract the 1x2 operator applied image from sobel operator applied image. i used imsubtract() but it is not ...
1
vote
2answers
411 views
mysql subtract two rows from column and places into an alias
I have table meter_readings with columns: id, date_taken, kwh.
I'm trying to subtract two rows in kwh column together and put the results into an alias called consumption.
I'm using:
SELECT id, kwh ...
-4
votes
1answer
47 views
Making a damage system with random numbers
I am trying to make a project for school, and I want to really make this stand out from the others by doing something I have never done before.
I want to make a system that will subtract random ...
0
votes
1answer
139 views
bsxfun rows subtraction in loop
I have a text file D with 98 rows and 2 columns. looks like this:
10 0.261344
11 0.456167
12 0.668595
2 0.481754
... etc
I have another excel file M with ...
0
votes
1answer
36 views
LESS CSS compilation error on subtracting color values
I'm running lessc my.less my.css.
Code:
@background: #343434;
input[type='text'] {
border: 1px solid (@background-#222);
}
Fails providing this error
NameError: variable @background- is ...
0
votes
10answers
138 views
Subtract percentage in C#
I'm trying to subtract percentage in C# using:
n = n - (n * 0.25);
but I'm getting an error:
"Cannot implicitly 'double' to 'int'. An explicit conversions exists
(are you missing a cast?)"
-4
votes
1answer
108 views
Regex subtract amount if the number is bigger than [closed]
I'm looking for a way to subtract a fixed amount if the number is bigger than specified value - using regex
e.g.
If the number is bigger than 10000 I want to subtract 5000, so it should look like:
...
0
votes
2answers
223 views
Subtracting Time in PHP to get Difference in Seconds [closed]
I want to figure out the difference in time by seconds. I keep getting 0 as a results and wants to know if someone could assist me. The times will be pulled from a database.
Here is an example of ...
-1
votes
1answer
105 views
can't subtract long double form long double in C++
Whenever I do subtraction from long double, I get incorrect answer
long double Runge(long double a, long double b, int m)
{
long double R;
R=(b-a)/((2^m)-1);
...
0
votes
3answers
145 views
SQL Server Subtract certain percent
I'm trying to subtract a certain percent of my price, into a AS columm.
SELECT TOP 2 *, price - (price * (discount/100)) AS discountedPrice
FROM products
WHERE discount != 0
But this seems not to ...
1
vote
1answer
337 views
Inventory Management Calculated Field in SharePoint 2010 across 2 Lists
I need a formula to calculate how much inventory is left on had after a work order has been completed. The work order I am developing is a separate list in sharepoint and I have an inventory list as ...
-5
votes
1answer
92 views
subtract from hour not in time format in php
I got time in this format: "192:40"
192=Hours, 40 = minutes.
Lets say I want to substract "02:30" hours so the answer will be "190:10"..
Is there any way doing it?
Thanks!
0
votes
0answers
71 views
Python - Subtract a List of Dicts containing str, int, list keys from Another [duplicate]
Possible Duplicate:
Python - Subtract a list of dicts from another
I'm interested in comparing multiple lists, taking the difference and iterating through that.
Both are list of dicts that ...
1
vote
1answer
97 views
Mistake in this small Java program
What is the mistake in this code? When I ran the program, it says "The application buttonProj (process com.example.buttonproj) has stopped unexpectedly. Please try again"
I just tried to create an Add ...
0
votes
2answers
93 views
jQuery - Subtract the unit price depending on quanitity
What I'm trying to achieve:
I want to subtract 0.09 from:
<span class="item_price cd_price">0.53</span>
When the input of: <input type="text" value="50" class="item_Quantity ...
0
votes
3answers
556 views
subtracting letters in c
I would like to know how to "subtract letters" in C:
I mean, I have 2 letters, 'a' and 'c' and i want to execute 'c'-'a'='b' which is 3-1=2.
How is it possible to obtain the same behaviour in C?
I can ...
-1
votes
2answers
382 views
DateTime error Subtracting from 0 hour
Using C# DateTime, I'd like to subtract a time past 0 (or midnight). However, I get an error when doing so. I'm trying to create a timeline where you can zoom in and out and scroll through the times. ...
0
votes
2answers
640 views
Sum and subtract chars in Java and always get result within the ASCII range
I have created two functions that sum and subtract the numeric values of two chars and return the char of the result in PHP. It's something like this:
function sumchars($c1, $c2) {
return ...
1
vote
4answers
73 views
Create new list containing list x but not elements in list y that are the same as in list x - python
I know this question has been discussed before, and I know this is such a novice and easy question, but for some reason I can't wrap my head around the code that would be needed to do this. Here is a ...
2
votes
4answers
2k views
Oracle Sql: how to substract rows from one table from another only once
I'm working for a university project, and I have the following question:
I have 2 tables in a Oracle DB... I need to select those rows from table1, which are not included in table2... But the main ...
1
vote
5answers
1k views
jQuery/JavaScript adding value of a button to total onClick [closed]
I have a list of buttons with numeric values and a total number displayed on top of the page.
OnClicking one of the buttons (e.g. "Add 100"), I want the integer value of 100 to be added to the total ...
2
votes
1answer
146 views
What is the most efficient way to subtract signed integral data in binary (bits)?
I'm working in C on a PC, trying to leverage as little C++ as possible, working with binary data stored in unsigned char format, although other formats are certainly possible if worthwhile. The goal ...
1
vote
1answer
589 views
SQL Subtract Variable From Rows
Is there a way to subtract a variable and use the remainder of that variable for the next column in MS-SQL
Basically what i want to do is subtract a certain value and start playing of the values from ...
0
votes
0answers
106 views
Please assist me with this query for get difference (amounts) between 2 years (for every months)
First I got months, route, year, amount (of 2011)
Second I got months, route, year, amount (of 2010)
After I calculate the difference doing a left join route with route and month with month (but ...
2
votes
2answers
1k views
MySQL “NOT IN” query not working
I have a table with three columns: taxon_id, scientific_name_element_id, and parent_id. I want to find the elements that are children and not parents, so the termini of the structure.
I found some ...
1
vote
3answers
105 views
mysql duplicate select and subtract 1 from the duplicates
I have a bit of a strange question.
First let me tell you i cannot change the way the database is made.
Some people before me made a really good job of messing some things up pretty bad.
Its a news ...
-2
votes
1answer
466 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" ...
0
votes
1answer
653 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 ...
1
vote
2answers
582 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
361 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 ...
-3
votes
1answer
255 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?
0
votes
0answers
248 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 ...
