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

learn more… | top users | synonyms

2
votes
0answers
102 views

Sum of multiple values of one variable

I want to sum the variable that is holding the value in a loop, Here's my table: name | pkey | cinema1~cinema10 | total_QTy | total_sales aaa | 1 | 100.00 ~ 200.00 | 2 | 300.00 bbb ...
2
votes
0answers
22 views

Modules, Mathematica

I have the following problem: I want to sum a smaller matrix M to a bigger one , N, starting from i,j in N. Here is the code: PutMintoN[M_, Q_, i_, j_] := Module[{Mrow, Mcol}, {Mrow, Mcol} = ...
2
votes
0answers
137 views

3D rigid body matching algorithm

As can be seen in the picture below, I have a number of lines in 3D. They consist of 3 different groups of lines, and the common property of the lines in each group is that they pass close to the same ...
1
vote
0answers
96 views

How to make this nested summation efficient in python?

I have a problem making an efficient function to be used in a rootfinding algorithm. I need to make a function that is a triple summation over lables, which contains a triple summation over a pair of ...
1
vote
0answers
73 views

SQLite: sum of large real numbers is integer instead of real

I created a table with some values: db.execSQL("create table table_test (" + "id integer primary key autoincrement," + "money real not null" + ");"); ContentValues ...
1
vote
0answers
105 views

SQL group values from multiple tables

I have tried for a long time to group the results of an outer join between two tables but i have had no luck. Using the code below I can get a correct output of the new business rate for each ...
1
vote
0answers
289 views

summing column values-variable not found error in ireport

i am summing all values(vertical) in single column using variable,which i declared as below in code,but when i am running code,it gives error,variable not found. I am printing this table in summary ...
1
vote
0answers
65 views

What's the simplest way to split 10 random numbers into two lists where the difference in the sum of the lists is as small as possible

You get 10 numbers that you have to split into two lists where the sum of numbers in the lists have the smallest difference possible. so let's say you get: 10 29 59 39 20 17 29 48 33 45 how would ...
1
vote
0answers
207 views

report builder 3.0 sum group variables out site groupe

I have made a row group variable and I want to make a sum out site of the groupe of this variable and not for the multiple values. The Expression whiche I want to sum is: ...
1
vote
0answers
475 views

How to group and sum datatable

I have datatable with two columns; line and duration. I want the sum of the duration, based on the line group. For example: LINE DURATION A1 00:05:20 A1 00:07:00 A1 00:02:10 A1 ...
1
vote
0answers
139 views

How does R do exact wilcox rank sum tests?

I read the documentation in R for wilcox.test() and want to determine: How R computes wilcox.test() The docs say that when the number of samples is small, it does the test exactly (instead of using ...
1
vote
0answers
248 views

Adding a total of items swiped with Arduino Uno and RFID tags

I am developing an RFID based handheld device that enables a user to swipe a product and total their purchase on the device. What would the code be to setting the RFID tags to display the price as ...
1
vote
0answers
197 views

Searching through a list for numbers adding up to a sum in C#

I have the user inputting a set of numbers in the range of 1 to 19... and need to find as many as possible of them that add up to 40, each number can only be used once. So say the list is: 19, 17, ...
1
vote
0answers
104 views

MySQL counting from first item, ignore counting within next 30 days

I have a set of subscriptions which last 30 days each from the purchase of the first item during the period PID | Date Purchased | User ID | Owner ID ...
1
vote
0answers
172 views

Recursive summation between 2 tables in mysql

I have 2 tables: one of hierarchies: X X/Y X/Z X/Z/A W/R W/Q W/R/D W/R/E .... and one of leaves: X/Z/A/3 X/Z/A/4 X/Z/2 X/Z/6 X/Y/A/8 X/Y/A/9 W/R/E/1 W/R/E/2 .... I Also have a table that connects ...
0
votes
0answers
6 views

MySQL select with joins and columns multiplication before row SUM

i have many tables, from where i'm doing select, but i will write only about important part. I have 2 tables accomodation: id | title | desc | etc.. accomodation_rooms: id | accomodation_id | ...
0
votes
0answers
7 views

UVA Closests Sums wrong answer

The problem I am refering to is this problem. I've been trying over and over and I keep on getting wrong answer. Every test input I try comes out with the same output that the uvatoolkit outputs. The ...
0
votes
0answers
18 views

How to sort by Total Sum calculated field in a Tablix

I have a Report in Microsoft Visual Studio 2010 that has a tablix. I have a list of Customers Sales grouped by Month. I would like to add a grand total of all the Months for each customer. I would ...
0
votes
0answers
8 views

Update storage qty / Update with (SUM)

I found multiple answers how to use sum with update but didn't get this right. I wan't to update storage qty with invoice rows when creating new invoice. I need sum to handle same product in multiple ...
0
votes
0answers
7 views

Multiple select boxes with maximum sum

I would like to have 2 select boxes with quantities in them (0,1,2,3,4,5,6 etc.). Those 2 select boxes should have an maximum sum of e.g. 6. How can I do this (using JQuery/JavaScript)? The maximum ...
0
votes
0answers
35 views

JavaScript Codility Demo Solution

I was looking at the demo Equi task on Codility last night and scored 12/100 for the following function: function solution(A) { var n = A.length; var p = 0; var sum = 0; var sumLeft = ...
0
votes
0answers
21 views

Create SQL view That groups on column A then creates column D from sum column B if in date range of date column C

I am trying to create a sales history view table that groups data on the Item number then crates a column per week that finds the sum of the qty sold for up to a year. Here is a example of our current ...
0
votes
0answers
25 views

How to calculate values in a record within grid(GWT)

amount.setAlign(Alignment.RIGHT); amount.setRecordSummaryFunction(RecordSummaryFunctionType.MULTIPLIER); amount.setSummaryFunction(SummaryFunctionType.SUM); ...
0
votes
0answers
26 views

javascript adding multiple number values

Can somebody help me here? I have 1 value that comes from sql database (e.g. 25.00) that multiply by any user quantity digit (e.g. 4) that gives a partial (id=subtotal1) of 100.00 Then I have ...
0
votes
0answers
4 views

want sum of the values returned by the group by query

i have the following table and produces the output as show in the last. CREATE TABLE [dbo].[1test]( [ID] [int] NOT NULL, [Plan] [int] NOT NULL, [Year] [int] NOT NULL, ...
0
votes
0answers
41 views

child/parent pairs sum per level

sorry to ask, answer is probable recursive but cant get my head around recursion. Have a workflow that can have sub-workflows in that workflow, I can calculate the time in each workflow, but am ...
0
votes
0answers
51 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
0answers
56 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 ...
0
votes
0answers
33 views

How do I pull data from the rows which contain my search, and sum them to give me a percentage?

I'm looking to write a formula for excel, but I've seem to hit a dead end. I have workbooks that have "Monthly Gas Used" in B5; below this I have a breakdown of where the fuel went. The breakdown ...
0
votes
0answers
15 views

input.name must be defined manually instead of using (input.name.match(/^Set\d+$/))

I'm using JavaScript to calculate values from type="radio". Each set of radio buttons is defined by "Set1" = first row "Set2" = second row The JavaScript uses the following to define the rows. var ...
0
votes
0answers
19 views

sum a column where one tuple column ref match

Been stuck on this for a while so any help would be appreciated. I am trying to populate a table which has sums from other VIEWS. job TABLE job_number || total_ labour || total_parts || ...
0
votes
0answers
9 views

Sum for the range after a particular position provided from the another cell

Example:- Suppose (30,20,5,15,25,10,25) are the values in the First row from Column A to G. And want to add the values on the basis of position provided from a another cell say A3 If Staring index ...
0
votes
0answers
69 views

Group By and sum with NSArray

Is there any way to calculate sum after group by? I could only find @sum and @distinctUnionOfObjects with KVC but I don't know how to combine them. I am doing this: I have a report where records are ...
0
votes
0answers
48 views

sum column always update after filtering data table javascript

I'm new to javascript, please help me I want to put a filter and sum functions in a javascript function this my code filter: <script language="javascript"> $(document).ready(function() { ...
0
votes
0answers
79 views

“AddSelect(SUM) ” Doctrine in createQueryBuilder()

Mi Index Controller public function indexAction() { $em = $this->getDoctrine()->getManager(); $qb = $em->createQueryBuilder(); $yesterday = new \DateTime('yesterday'); ...
0
votes
0answers
63 views

get total SUM from a column based on recordID php

I have a page showing utility bills for a property. What I have achieved so far is to show the total of ALL bills in the column but what I need to show is the bills for the set property Here is the ...
0
votes
0answers
57 views

Countif - Function: SUM doesn´t work

I want the following function to sum a few values in one row. If the value is a 'L', it should sum 8, but that doesn´t work. If I type in a 'L', the value is 168. ...
0
votes
0answers
22 views

SUM() on continuous form slow to calculate

I have Form and Subform connected to a SQL Server database via an ADODB connection. The main Form is an 'Order' header and the subform is a continous list of 'Items' on the order. I have a hidden ...
0
votes
0answers
20 views

Calculating Total Sum in Master from Detail

My Master-Detail form is used to create a list of orders and their costs. The Detail contains a field called "COST" and I need the "TOTAL COST" field in the Master to be calculated upon this. For ...
0
votes
0answers
57 views

Summing up a field in solr

I have a Solr index with fields : STR(k_id) STR(k_pid) INT(k_count) >= 1 I want a query which achieves this : SELECT k_pid, SUM(k_count) FROM index GROUP BY k_pid How can I do the sum ...
0
votes
0answers
67 views

Matlab: complex summations over an array

I'm trying to implement value iteration in Matlab but having troubles programming summations in a clean way.This is what I use right now: problem.transition is a 92x92x5 matrix, with the amount of ...
0
votes
0answers
52 views

Algorithm to subvidide and calculate balance efficiently

Let's say you have a large number of transactions over time flowing into/out of an account. Every time a new transaction comes in you need to recalculate the balance to show to the user. It's ...
0
votes
0answers
96 views

Web2Py csv export over Select sum, count and multiple tables

I trying to get an export over my tablestructure in a readable Form (csv) and can't get a single object as a return value. my (simplified) table structur: table: workshops title table: ...
0
votes
0answers
108 views

how can i sum UITextField input in 2 Array with TableView ? and how i save it with NSUserDefaults?

I am trying to sum UITextField input in 2 arrays or more to get the total for it but I dont know how? I am new in Xcode so please help me, also I am having a problem saving my textfield input with ...
0
votes
0answers
185 views

MySQL query to find the sum of all columns of type tinyint?

There is a query to find out all columns of type 'tinyint' : select column_name from information_schema.columns where table_name = 'MYTABLE' and data_type='tinyint'; There is also a ...
0
votes
0answers
14 views

large 2D coordinates

Can someone help me out with a fast method of calculating the sum of all the elements of a triangular matrix? I am stuck out on this. Ive tried halving the time taken by taking the element and its ...
0
votes
0answers
86 views

Aggregate values ​​from XML file with VBA

How can I add filtered values ​​from an XML file with VBA? I need the sum and the max for all values of 'umsatz' in all 'record' with lkz="D" <?xml version="1.0" encoding="ISO-8859-1"?> ...
0
votes
0answers
380 views

Gridview Column Sum with Javascript or Jquery And Popup Message

I hope I can ask my question correctly and stackoverflow accepts my question :) I have a gridview on my nestedpage in an updatepanel. I am adding values and editing or deleting them. There is no ...
0
votes
0answers
61 views

Clear MS-Access Memory with Javascript before next query

background: I was having some issues with retrieving the SUM from a column in my access database and displaying the value in a html textbox. With some help from @Remou, i was able to get that to work: ...
0
votes
0answers
154 views

Query Fastreport Sum & Count

For the following table. no. |pts |abs |ptsSum |ptsCount 111 200 1 200 1 111 500 1 500 1 222 1000 1 1000 1 Questions abs is always "1" I want to sum the ...

1 2 3 4 5 7