The 'sum' function which returns the sum of the items in an array.

learn more… | top users | synonyms

3
votes
4answers
44 views

python sum tuple list based on tuple first value

Suppose I have the following list tuples: myList = [(0,2),(1,3),(2,4),(0,5),(1,6)] I want to sum this list based on the same first tuple value: [(n,m),(n,k),(m,l),(m,z)] = m*k + l*z For myList ...
0
votes
0answers
25 views

How to sum over columns with some weight in a csr matrix in python

If I have a large csr_matrix A, I want to sum over its columns, simply A.sum(axis=0) does this for me, right? Are the corresponding axis values: 1->rows, 0->columns? I stuck when I want to sum ...
0
votes
2answers
33 views

Sum range in column with condition in another colum

I´m trying to sum the values of a range in a column if the values in another column are equal to a certain number. For example (this is a very small example): I want to sum all the values in Column ...
0
votes
1answer
26 views

Inception situation with oracle (sub query stuffs)

For Oracle, From these tables, Table 1 "CUSTOMER" : has cust_fname, cust_lname, cust_id Table 2 "SALESORDER" : has so_number, so_custid Table 3 "ITEM" : has item_qty, item_sonum while CUST_ID = ...
0
votes
2answers
23 views

How to select records only when the SUM(field) from a separate table > 0 using MAX to identify the most recent 'field'

I have been battling with this query for over a day now. My SQL is not amazing, so that might explain why! Anyway, I'd really appreciate if anyone could clarify what I'm doing wrong here. Offer ...
0
votes
1answer
37 views

How to write a function that adds numbers in a list by calling itself?

I'm trying to write a function that adds up all the numbers in a list but by calling itself in Python. Here's an example of what I mean: def factorial(n): if n == 1: return 1 else: ...
0
votes
2answers
43 views

Unable to change NSNumber to Double and do some calculations with it

my problem is that i have an Array that holds some double values NSArray *level4results = [context executeFetchRequest:request error:&error]; then i sum up all the values in that array ...
0
votes
1answer
23 views

SQL SUM total using 2 tables

I have 2 tables: TBL_EQUIPMENTS and TBL_PROPOSAL. TBL_PROPOSAL has 3 important columns: id_proposal date discount TBL_EQUIPMENTS has: id_equipment id_proposal unit_price quantity Now I want ...
0
votes
1answer
46 views

sum input values and skip one of them jquery

I have form which is making sum of numbers but i want that middle input to be skipped by jquery for summing... please help with this code here i posting... it surely must be inupt tag because it sends ...
0
votes
2answers
37 views

Total sum of values from td element (from different classes element)

How can I sum 2 different (class elements) total values? Example: http://jsfiddle.net/x7QuB/ var total_listed=[0,0]; var total_sold=[0,0]; $(document).ready(function(){ var ...
0
votes
1answer
28 views

How to get the sum of a created column from a joined table? SQL / C#

In ASP.NET / C#, I am working with two tables; Cart_LineItems and Products. I have joined the two tables and created a new column called "Extension" that has multiplied the "Products.UnitPrice" times ...
0
votes
3answers
31 views

getting sum of a column in php is not working

i'm trying to get the sum of values in a column inside php but it's not working at all while the query works fine when testing in MySQL here's the code (updated with full code) ...
0
votes
2answers
22 views

How to optimize a MySQL query with SUM(condition)

I have the following MySQL query. SELECT user_id SUM(reached = 'Y') AS reached_count, SUM(reached = 'N') AS not_reached_count FROM goals GROUP BY user_id In table goals I ...
0
votes
0answers
48 views

SQL: Fastest way to sum the division of two columns that contain 0's and grouped by a third

Lets say we have 3 columns, all integers, the first the id, the second X and the third Y, where X is 1 when an instance occurred, 0 when not, and Y is 1 when an opportunity for that instance occurred ...
-2
votes
1answer
32 views

grails: sum selected values

I have a select in Grails that represents numeric values. I need to do the sum of selected values and put it in another textfield. In particular, when I select a new value I need to add it to the ...
0
votes
1answer
40 views

Calculate a discrete mean in python

I have a set of data points for which I have made a program that will look into the data set, from that set take every n points, and sum it, and put it in a new list. And with that I can make a simple ...
0
votes
0answers
10 views

Missing $ inserted - did I make something wrong? [migrated]

Im writing a paper using Latex and I get repeatedly this "! Missing $ inserted. $ l.92 ?" error. Its only in two passages and I don't see any obvious mistake I made. The code is: ...
2
votes
2answers
26 views

Sum vector with corresponding name

Let say you have a list of vector: L = list() L[[1]]= c(2,34,6,7,3) L[[2]]= c(3,4,6,8,1) names(L[[1]])=c("A","B","C","D","E") names(L[[2]])=c("A","R","C","D","F") L ## [[1]] ## A B C D E ## 2 ...
0
votes
2answers
41 views

SQL query of Sum and Count from multiple tables

i have following two tables 1. BList BookingID AdultNo ChildNo BookingDate 2. BHandle BookingID TicketingStatus FinalSellingPrice FinalNett Staff What i want to do is to get the distinct ...
2
votes
1answer
42 views

Mysql SUM function returns returns wrong decimal values

I have the following table with the test data set: CREATE TABLE `test` ( `id` int(11) NOT NULL AUTO_INCREMENT, `desc` varchar(20) DEFAULT NULL, `amount` double DEFAULT NULL, PRIMARY KEY ...
1
vote
2answers
61 views

Sum of particular members of an object array

This is my first question here, so hopefully it's a good one (I have searched for an answer, but not found it yet). I have an event based disease model written in C++, and I'm trying to convert it to ...
0
votes
1answer
20 views

Updating Table2 when data found in table1

Forgive me if I make a fool of myself but still fairly new to mysql queries beyond the "basic" kind. Currently I have two tables of data. Table 1 has data parsed into it using a LOAD INTO and Table 2 ...
-1
votes
1answer
38 views

PHP , Sum Of Common Division 2 Numbers

I want to Sum of Common Division Between two number, in below is my code , and output is maghsom moshtarak is=24612 but Goal is 12 only; please help me, <?php $m=0; $j=6; $h=12; function ...
0
votes
1answer
19 views

Excel: SUMing values that fall in a range (Extending SUMIFS to use ranges of Criteria)

First post - please be gentle. I have an interesting problem where I'm trying to convert a flat data table into a cumulative total based on two ranges (to create cumulative graphs of progress). ...
3
votes
3answers
49 views

Aggregate data frame by date and apply different functions to corresponding columns?

I have the following data frame "DF" which is part of a much larger one: X1 X2 X3 X4 X5 4468 2010-03-24 3 1.000000e+00 1 2 7662 2010-03-24 9 3.000000e+00 2 1 1272 ...
0
votes
1answer
20 views

MySQL Indexes for random queries across 1.5M lines table

I have a pretty big mysql table of 1.5 Millions lines. There are 7 columns identifying the Data with labels (varchar), and 38 Columns containing Numeric (Decimal) Data; The data are organized that ...
0
votes
2answers
67 views

SQL SUM top 5 values then JOIN results

I want to return the top 5 most voted items, sorted by vote count. I suppose the best way to do it would be to sum each row's votes_up and votes_down, then take the top 5 of those and join it with the ...
0
votes
1answer
25 views

Mysql merge 1 table into a 2nd and count columns together [closed]

TABLE1 | ID | NAME | MONEY | POINTS | | 1 | Tim | 200 | 1 | | 2 | Arne | 500 | 2 | | 3 | Lies | 600 | 3 | ...
0
votes
1answer
46 views

Generalizing ROW() and SUM() - excel

What I would like to do is something like this: =SUM(A(ROW()):E(ROW())) so this formula would take a sum of all the elements from column A to E in the current row. Is this possible or should I take ...
0
votes
2answers
31 views

How to find the sum of two colums with a quantity value

Ok so I am a lil confused how to go about this and seek some help.. I have a mysql db that has a column named quantity and another called price_paid what I want to do is take and add up the entire ...
0
votes
1answer
42 views

XML/XSLT sum for-each with variables

I am having a problem. What I want is to sum the objects and print them for every iteration. I am new to XSLT, so please be kind. What I have is this code: <?xml version = "1.0" encoding = ...
0
votes
1answer
22 views

MS Access SQL with two SUM Function

I have a "TableA" with fields "A, B, C, Bytes, Entrada_Saida" and need to return in the same query a Sum(Bytes) when "Entrada_Saida = Entrada" and another when "Entrada_Saida = Saida", grouping by A, ...
1
vote
1answer
18 views

MySQL get sum of fields which rows refer to the two records in another table in between selected rows

Sorry about the vague title, but I'm not quite sure how to name this procedure. So the problem is I have two tables. First one represents train stations and their order: station_id | station_name 1 ...
3
votes
2answers
23 views

Calculating number of values less than x by row of data frame

I have searched the forums and the web high and low for the last two days, and broken down my script to try and find the issue, but for some reason, I can't get this to work properly beyond the first ...
-5
votes
2answers
53 views

How do I sum up the data in a file in Java? [closed]

I have previously done my research and I couldn't find anything that could help me. I have a file which has a persons name and then their grades next to it. I want to take the grades for each name and ...
2
votes
2answers
56 views

Excel - Sum cells based on colour and date

I've been tearing my hair out trying to figure this out for a day or so now and seem to be getting nowhere so hopefully someone can shed some light on a solution for me. I have the following: Date ...
-1
votes
2answers
48 views

java “=+” compiles but it does not affect any variable

I wanted to increment an integer by adding another one , but i wrote "=+" instead of "+=" . and i saw that it compiles but it does not do anything . or does it ? a=3 b=5 a=+b print a >>> 5 ...
0
votes
1answer
37 views

SQL script to check a value then if found increment a field by a value of 1

Im trying to write a script that will pull the information from a table called 'bookings', this contains a column that gives the length of each booking called 'hours'. Values in this column are shown ...
0
votes
1answer
25 views

Oracle SQL suming value without using aggregate function

I am studying for my SQL class and I'm stuck on a about writing a SQL query without using aggregate functions. For example, we have table item. item_id | price 1 | 10 2 | 20 3 | 40 ...
1
vote
2answers
21 views

Is it possible to add wrapped numbers without boxing/unboxing?

I'm getting a Long value as a result of some method. Now, when I want to add 1 to that number, the compiler warns me about the value being boxed / unboxed to perform the sum. public Long ...
1
vote
1answer
32 views

OpenCL Kernel summatory

I want to know if this is possible to do... I want to check inside of the kernel in java, if the array contains numbers and characters, and if yes, save how many times they appear in the output array. ...
2
votes
2answers
40 views

Query to join three tables With Sum

I am trying to join thee tables and there's one Sum value but its not showing any error but its a wrong value... but if I join with two table it working correctly. the query is SELECT ...
0
votes
2answers
31 views

How to sum each column on the table php

I want to sum each column on this table: $docid = array(1, 2, 3, 4, 5); $table = array('technology' => 1 , 'languange' => 2, 'town' => 3, 'gadget' => 4, 'smartphone' => 5); ...
0
votes
3answers
36 views

Sum a field in mysql [duplicate]

how do I get the output from this: $VisitorsProfile = $mysql->query("SELECT SUM(views) FROM visitors_profile WHERE publisher = '123456'"); I tryed this but nothing prints me out! <?php echo ...
1
vote
2answers
56 views

Is it faster to sum the rows or columns of a matrix with CUDA?

I want to compute a row-sum of an m x n matrix A, or equivalently the column-sum of its transpose A' (I have both in memory so A' costs me nothing extra in computation). I plan to launch m threads ...
-1
votes
0answers
69 views

Two Summations in Matlab [closed]

I need to write a code in Matlab for the following equation: Σ i=0 to 100 ( (f(x). Σ j=0 to k f(y) ) where f(x), f(y) and k returns constant values. I have tried to write this code. Kindly tell me ...
0
votes
2answers
42 views

Error 1045 on sum function in pig latin with an int

The following pig latin script: data = load 'access_log_Jul95' using PigStorage(' ') as (ip:chararray, dash1:chararray, dash2:chararray, date:chararray, date1:chararray, getRequset:chararray, ...
1
vote
0answers
42 views

put a where in Sum clause in MYSQL [duplicate]

hi guys im using this MYSQL query to get the top uploader users and the total of thier images views in the current month : $current_month = date('Y-m-d', strtotime("first day of this month")) . ' ...
1
vote
3answers
41 views

MYSQL SUM() with GROUP BY and LIMIT

I got this table CREATE TABLE `votes` ( `item_id` int(10) unsigned NOT NULL, `user_id` int(10) unsigned NOT NULL, `vote` tinyint(4) NOT NULL DEFAULT '0', PRIMARY KEY (`item_id`,`user_id`), ...
0
votes
3answers
49 views

C++ Infinite Sum Code Hanging? Freezing? I'm not sure

Okay, so I'm trying to compute an infinite sum using a for loop instead of a while loop, and the darn code isn't working and I'm not sure why. I get the two "I got here"'s ONCE and then nothing. :\ ...

1 2 3 4 5 45