Tagged Questions
The sum tag has no wiki summary.
23
votes
6answers
15k views
How to sum array members in Ruby?
I have an array of integers.
For example:
array = [123,321,12389]
Is there any nice way to get the sum of them?
I know, that
sum = 0
array.each { |a| sum+=a }
would work.
22
votes
8answers
10k views
Linq query with nullable sum problem
from i in Db.Items
select new VotedItem
{
ItemId = i.ItemId,
Points = (from v in Db.Votes
where b.ItemId == v.ItemId
select v.Points).Sum()
}
I got this query, ...
19
votes
4answers
475 views
How do I get a SUM to calculate properly with a join?
So I'm trying to count the number of parts, number of tasks, the quantity in each job and the time that it took to manufacture each job but I'm getting some funky results. If I run this:
SELECT
...
16
votes
5answers
699 views
Modify a given number to find the required sum?
A friend of mine sent me this question. I haven't really been able to come up with any kind of algorithm to solve this problem.
You are provided with a no. say 123456789 and two operators * and +. ...
13
votes
2answers
385 views
Minimum of sum of absolute values
Problem statement:
There are 3 arrays A,B,C all filled with positive integers, and all the three arrays are of the same size.
Find min(|a-b|+|b-c|+|c-a|) where a is in A, b is in B, c is in C.
I ...
10
votes
5answers
3k views
MYSQL sum() for distinct rows
I'm looking for help using sum() in my SQL query:
SELECT links.id,
count(DISTINCT stats.id) as clicks,
count(DISTINCT conversions.id) as conversions,
sum(conversions.value) as ...
9
votes
6answers
9k views
How can I change NULL to 0 when getting a single value from a SQL function?
I have a query that counts the price of all items between two dates. Here is the select statement:
SELECT SUM(Price) AS TotalPrice FROM InventoryWHERE (DateAdded BETWEEN @StartDate AND @EndDate)
You ...
8
votes
6answers
270 views
PHP largest whole number from sum of unsorted array
Can someone tell me the best way to find the largest whole number summed from an unsorted array?
e.g.
{0.1, 0.2, 0.9, 0.5}
Largest whole number possible is 1 (0.1 + 0.9).
{0.9, 0.2, 0.5, 0.3, 0.9}
...
8
votes
3answers
710 views
Get the sum of digits in PHP
How do I find the sum of all the digits in a number in PHP? I've found solutions for C# and others, but not PHP. How do I do it? Thanks!
8
votes
5answers
1k views
How do I sum values from two dictionaries in C#?
I have two dictionaries with the same structure:
Dictionary<string, int> foo = new Dictionary<string, int>()
{
{"Table", 5 },
{"Chair", 3 },
{"Couch", 1 }
};
...
8
votes
7answers
1k views
Getting N random numbers that the sum is M
I want to get N random numbers that the sum of them is a value.
For example, let's suppose I want 5 random numbers that their sum is 1
Then, a valid possibility is:
0.2 0.2 0.2 0.2 0.2
Other ...
8
votes
5answers
2k views
SELECT SUM returns a row when there are no records
I'm finding some problems with a query that returns the sum of a field from a table for all the records that meet certain conditions. I expected to receive a "No records found' when there were no ...
8
votes
5answers
3k views
Get sum of two columns in one LINQ query
let's say that I have a table called
Items (ID int, Done int, Total int)
I can do it by two queries:
int total = m.Items.Sum(p=>p.Total)
int done = m.Items.Sum(p=>p.Done)
But I'd like to do ...
7
votes
1answer
2k views
C# List of objects, how do I get the sum of a property
I have a list of objects. One property of the individual object entry is amount. How do I get the sum of amount?
If my list was of type double I may be able to do something like this:
double total = ...
7
votes
8answers
453 views
Practical uses for STL partial_sum
As the title suggests, I'm wondering what/where are the practical uses of the partial_sum algorithm in STL.
Any interesting/non-trivial examples or use-cases out there?
7
votes
5answers
664 views
Awk conditional sum from a CSV file
I have a CSV file from which I would like to extract some pieces of information: for each distinct value in one colum, I would like to compute the sum of the corresponding values in another column. ...
7
votes
6answers
635 views
Python sum, why not strings?
Python has a built in function sum, which is effectively equivalent to:
def sum(iterable, start):
return start + reduce(operator.add, iterable)
for all types of parameters except strings. It ...
7
votes
6answers
3k views
How can I sum arrays element-wise in Perl?
@arr1 = ( 1, 0, 0, 0, 1 );
@arr2 = ( 1, 1, 0, 1, 1 );
I want to sum items of both arrays to get new one like
( 2, 1, 0, 1, 2 );
Can I do it without looping through arrays?
7
votes
2answers
7k views
add NSTimeInterval to NSDate in cocoa
I've got a NSDate that represents a specific time. The format of that date is hhmmss. I want to add an NSInterval value (specified in seconds) to that time value.
Example:
NSDate = 123000
...
7
votes
12answers
27k views
Make a negative number positive in Java
I'm sure this is a very simple question! I have a Java method in which I'm summing a set of numbers. However, I want any negatives numbers to be treated as positives. So (1)+(2)+(1)+(-1) should equal ...
7
votes
8answers
10k views
Max of Sum in SQL
I have a list of stores, departments within the stores, and sales for each department, like so (created using max(sales) in a subquery, but that's not terribly important here I don't think):
toronto ...
6
votes
2answers
136 views
addition instead of subtraction in Kahan algorithm
This is the Kahan summation algorithm from Wikipedia:
function KahanSum(input)
var sum = 0.0
var c = 0.0
for i = 1 to input.length do
y = input[i] - c // why subtraction?
...
6
votes
4answers
81 views
Sum of 3 variables: strange behavior [closed]
Possible Duplicate:
Is JavaScript's Math broken?
Why can't decimal numbers be represented exactly in binary?
What will be result of next code:
if(0.3 == ( 0.1 + 0.1 + 0.1 ))
{
...
6
votes
2answers
680 views
A powershell script to find the file size and file count of a folder with millions of files?
The purpose of the script is to 1) Print the number of files recursively found within a directory (omitting folders themselves), 2) print the total sum file size of the directory 3) Not crash the ...
6
votes
2answers
121 views
What's the best algorithm for finding the sum of all items in an arbitrary sub array
I have a problem, and an OK-ish solution. I'm hoping there's a better solution out there.
The problem
I have an array with around 200,000 integers. Given two indices, i1 and i2, I need to calculate ...
6
votes
5answers
325 views
Efficiently summing log quantities
Working in C++, I'd like to find the sum of some quantities, and then take the log of the sum:
log(a_1 + a_2 + a_3 + ... + a_n)
However, I do not have the quantities themselves, I only have their ...
6
votes
3answers
502 views
Excel-VBA Named range row sum
I have the following code
For i = 1 To DepRng.Rows.Count
For j = 1 To DepRng.Columns.Count
DepRng.Cells(i, j) = Application.Sum(KidsRng.Row(i)) //Does not work
Next j
Next i
...
6
votes
6answers
915 views
Algorithm to find the maximum sum in a sequence of overlapping intervals
The problem I am trying to solve has a list of intervals on the number line, each with a pre-defined score. I need to return the maximum possible total score.
The catch is that the intervals ...
6
votes
3answers
134 views
How to SUM() from an offset through the end of the table?
If SELECT SUM(amount) FROM transactions ORDER BY order LIMIT 0, 50 sums the amount field for the first 50 records in a table, how do a sum all records after the first 50? In other words, I'd like to ...
6
votes
4answers
448 views
remove numbers from a list without changing total sum
I have a list of numbers (example: [-1, 1, -4, 5]) and I have to remove numbers from the list without changing the total sum of the list. I want to remove the numbers with biggest absolute value ...
6
votes
6answers
710 views
Summation notation in Haskell
On the Wikipedia page about summation it says that the equivalent operation in Haskell is to use foldl. My question is: Is there any reason why it says to use this instead of sum? Is one more 'purist' ...
6
votes
8answers
688 views
Accurate evaluation of 1/1 + 1/2 + … 1/n row
I need to evaluate the sum of the row: 1/1+1/2+1/3+...+1/n. Considering that in C++ evaluations are not complete accurate, the order of summation plays important role. 1/n+1/(n-1)+...+1/2+1/1 ...
5
votes
3answers
69 views
AddRange() and LINQ copying issue
I currently have a method which is quite simple and calculates a list of CurveValue (custom object), the issue I have is I need to calculate the parameter and pass a decimal back without actually ...
5
votes
2answers
88 views
How to Combine two Sum operations into one using LINQ?
I have this code
Dim sum As Integer = scores.Sum(Function(score) score.Fraction * score.Score)
Dim count As Integer = scores.Sum(Function(score) score.Fraction)
or in C#:
var ...
5
votes
1answer
342 views
Add 95% confidence limits to cumulative plot
I would like to add a parabola line denoting 95% confidence limits to this coin toss plot using R:
x <- sample(c(-1,1), 60000, replace = TRUE)
plot.ts(cumsum(x), ylim=c(-250,250))
Here is an ...
5
votes
4answers
539 views
SQL How to do a conditional sum by distinct id?
Suppose you have result set such as:
DATE ID cost
---------------------------------------
01/01/2011 1 10
01/01/2011 1 10
01/01/2011 2 10
...
5
votes
2answers
1k views
SQLite: accumulator (sum) column in a SELECT statement
I have a table like this one:
SELECT value FROM table;
value
1
3
13
1
5
I would like to add an accumulator column, so that I have this result:
value accumulated
1 1
3 4
13 17
1 ...
5
votes
3answers
8k views
Using GroupBy, Count and Sum in LINQ Lambda Expressions
I have a collection of boxes with the properties weight, volume and owner.
I want to use LINQ to get a summarized list (by owner) of the box information
e.g.
**Owner, Boxes, Total Weight, Total ...
5
votes
2answers
994 views
ruby: sum corresponding members of two arrays
I've got two (or more) arrays with 12 integers in each (corresponding to values for each month). All I want is to add them together so that I've got a single array with summed values for each month. ...
5
votes
8answers
710 views
PHP: find two or more numbers from a list of numbers that add up towards a given amount
I am trying to create a little php script that can make my life a bit easier.
Basically, I am going to have 21 text fields on a page where I am going to input 20 different numbers. In the last field I ...
5
votes
3answers
2k views
How do I add two count(*) results together?
I have two tables: Toys and Games.
+--------------------+------------------+
| Field | Type |
+--------------------+------------------+
| toy_id | int(10) ...
5
votes
2answers
2k views
Linq Query with SUM and ORDER BY
I have a (C#) class called Hit with an ItemID (int) and a Score (int) property. I skip the rest of the details to keep it short. Now in my code, I have a huge List on which I need to do the following ...
5
votes
2answers
16k views
How to calculate sum of a DataTable's Column in LINQ (to Dataset)?
I'm just started to read up on LINQ and I want to start incorporating it into my code. I know how to compute the sum of a DataTable's column by either "Foreach"-ing through the rows or by doing a ...
4
votes
1answer
68 views
Django admin extra field Sum() TimeField
In Django Admin i want to display the sum of all action durations. I solved it wirh an extra field. But the sum of
01:30:00 h
03:45:00 h
are summed to 47500,0 because sum converts times to integer.
...
4
votes
1answer
55 views
Why is the sum of an empty set null?
If I do:
int updateGamePlays = db.tblArcadeGames.Where(c => c.ParentGameID == GameID).Sum(c => c.Plays);
If no records are returned in this query it throws:
System.InvalidOperationException: ...
4
votes
5answers
192 views
How to get mathematica to carry out a Sum when only part of it is defined?
I'm having a sum like this:
Sum[1 + x[i], {i, 1, n}]
Mathematica doesn't simplify it any more. What would I need to do so it translates it into:
n + Sum[x[i],{i,1,n}]
4
votes
5answers
241 views
How do I determine if I am getting record duplication in MYSQL?
I'm running a query to find out how much estimated work was done on a factory floor and how much time was actually tracked in comparison to the amount of hours that station has available.
I"m doing ...
4
votes
2answers
169 views
Using Count() and Sum() correctly in SQL?
Ok, so I hope I can explain this question well enough, because I feel like this is going to be a tough one.
I have two tables I'm working with today. These look like:
@pset table (PersonID int, ...
4
votes
2answers
80 views
How can I get the sum of multiple datetime values?
I have a query such that the query's result is:
SELECT CONVERT(VARCHAR(8),(MAX(END_TIME)-MIN(START_TIME)),108) as DURATION WHERE ... GROUP BY TITLE
For each title, DURATION is different. The query ...
4
votes
2answers
88 views
How to sum based on field value (mysql)
I got this table named tb_stock
ID AMOUNT FLAG LAST_AMOUNT
1 5 N 0
2 0 Y 8
3 0 Y 7
4 6 N 0
Right now i want to ...