Tagged Questions
The average tag has no wiki summary.
18
votes
4answers
785 views
Generate a random number with max, min and mean(average) in Java
I need to generate random numbers with following properties.
Min should be 200
Max should be 20000
Average(mean) is 500.
Optional: 75th percentile to be 5000
Definitely it is not uniform ...
12
votes
13answers
933 views
Average function without overflow exception
.NET Framework 3.5.
I'm trying to calculate the average of some pretty large numbers.
For instance:
using System;
using System.Linq;
class Program
{
static void Main(string[] args)
{
...
12
votes
7answers
2k views
Exponential Moving Average Sampled at Varying Times
I have a continuous value for which I'd like to calculate an exponential moving average. Normally I'd just use the standard formula for this:
Sn = αY + (1-α)Sn-1
where Sn is the new ...
10
votes
5answers
196 views
Extremely large weighted average
I am using 64 bit matlab with 32g of RAM (just so you know).
I have a file (vector) of 1.3 million numbers (integers). I want to make another vector of the same length, where each point is a weighted ...
7
votes
4answers
8k views
calculate exponential moving average in python
I have a range of dates and a measurement on each of those dates. I'd like to calculate an exponential moving average for each of the dates. Does anybody know how to do this?
I'm new to python. It ...
5
votes
6answers
291 views
Take the average of two signed numbers in C
Let us say we have x and y and both are signed integers in C, how do we find the most accurate mean value between the two?
I would prefer a solution that does not take advantage of any ...
5
votes
8answers
664 views
Efficient way to calculate average value over disjoint subranges of STL map
I'm converting an algorithm from C# to C++. A small part of the algorithm is to calculate average values for certain areas in a dictionary.
The data in the dictionary is stored in the following way:
...
5
votes
5answers
304 views
Calculate average without being thrown by strays
I am trying to calculate an average without being thrown off by a small set of far off numbers (ie, 1,2,1,2,3,4,50) the single 50 will throw off the entire average.
If I have a list of numbers like ...
5
votes
4answers
614 views
Simple Math Issue in C#
So i have this program that takes 3 scores out of a possible 200 each then is supposed to get the average and display the percentage. but when i input numbers i get 00.0 as an answer.
What could i be ...
5
votes
7answers
543 views
Compute weighted averages for large numbers
I'm trying to get the weighted average of a few numbers. Basically I have:
Price - 134.42
Quantity - 15236545
There can be as few as one or two or as many as fifty or sixty pairs of prices and ...
5
votes
2answers
480 views
Find average date from collection of dates (Ruby)
Hey guys, I have a table of guesses, within each guess is just a date. I was wondering how I would go about turning two or more dates into an average.
<div id="logic">
<% foo = Date.today ...
5
votes
2answers
3k views
Generic awk script to calculate average on any field through command line argument
I want to write a generic awk script that can take as input a file and a field number (in that file) and give me the average value of that field in that file. I would use it something like this:
...
5
votes
4answers
1k views
Average of two angles with wrap around [closed]
Possible Duplicate:
How do you calculate the average of a set of angles?
I have two angles, a=20 degrees and b=350 degrees. The average of those two angles are 185 degrees. However, if we ...
5
votes
5answers
2k views
T-SQL Time Averaging
I have a table in SQL Server that stores statistics for a piece of hardware, rows in the table represent data for a given second. It contains for example, these columns:
timestamp (DateTime)
value ...
5
votes
7answers
1k views
Can I calculate the average of these numbers?
I was wondering if it's possible to calculate the average of some numbers if I have this:
int currentCount = 12;
float currentScore = 6.1123 (this is a range of 1 <-> 10).
Now, if I receive ...
5
votes
6answers
343 views
What's the quickest way to get the mean of a set of numbers from the command line?
Using any tools which you would expect to find on a nix system (in fact, if you want, msdos is also fine too), what is the easiest/fastest way to calculate the mean of a set of numbers, assuming you ...
4
votes
4answers
193 views
How to find the average of a set of bearings [closed]
Possible Duplicate:
How do you calculate the average of a set of angles?
If I have a set of bearings, ranging from 1-360, how can I find the average? Usually to find the average one would ...
4
votes
6answers
361 views
Need help fnding the average of a set of numbers in python
in my data file I have
60,66,88,90,44,90,80,77
all the numbers are in one line
this is my code which does not give me the average of my numbers
inFile3 = open("data2.txt","r")
global ...
4
votes
1answer
295 views
TSQL - Average of all values in a column that are not zero
I'm in the process of writing a report and am looking to get the average value of an age column. The problem is that not all rows have an age.
If the values for the column are 0 2 4 I would want 3 ...
4
votes
5answers
199 views
Average of grouped rows in Sql Server
I have an Sql Server Table.. it's something like this:
Id ...... Column1 ...... Column2
````````````````````````````````
1 ........ 1 ............. 34
2 ........ 1 ............. 44
3 ...
4
votes
6answers
351 views
calculate the average of three encrypted numbers
Is possible to calculate average of three encrypted integer? No constrain on the method of encrypting. The point of this is just to hide the three numbers and find average.
4
votes
3answers
299 views
How do you concisely get the average house price from an array of houses?
Assuming the @houses array is set up as follows:
house1.price = 10
house2.price = 20
house3.price = 30
@houses << house1
@houses << house2
@houses << house3
This is the starting ...
4
votes
7answers
925 views
Clean way to reduce many TimeSpans into fewer, average TimeSpans?
I have a C# Queue<TimeSpan> containing 500 elements.
I need to reduce those into 50 elements by taking groups of 10 TimeSpans and selecting their average.
Is there a clean way to do this? I'm ...
3
votes
2answers
41 views
How would you average two 32-bit colors packed into an integer?
I'm trying to average two colors.
My original (horrible) implement is as follows:
//color is a union
int ColorAverage(int c1, int c2) {
color C1(c1);
color C2(c2);
return color(
...
3
votes
4answers
81 views
How can I average a subset of an array and store the result in another array?
I have a C array fftArray[64] that contains values that I want averaged and placed into another array frequencyBar[8]. Getting the average of the entire array would be easy enough using a for ...
3
votes
2answers
114 views
How do you correctly calculate a running average of large sets of numbers with 32-bit floating point?
I'm writing a path tracer and have to collect an average over a large number of samples per pixel. I get significant visual differences between a 1024-samples run and a 16384-samples run; the ...
3
votes
4answers
62 views
LINQ - returning list of averages based on index in list
So I have a kindda odd scenario that I cannot get my head arround:
I have a outerlist which contains multiple innerlists.
Each innerlist contains multiple DataPoint objects. Every innerlist contains ...
3
votes
1answer
67 views
Need to take average of long, strangely formatted set of data in Python
So I have a large set of data that looks like this
[('ART', [100, 234, 830, 304]), ('MATH', [600, 1400, 300, 340]), ('HISTORY', [2010, 300, 400, 600])]
How would I turn this into a set of data ...
3
votes
3answers
533 views
SQL Work out the average time difference between total rows
I've searched around SO and can't seem to find a question with an answer that works fine for me. I have a table with almost 2 million rows in, and each row has a MySQL Date formatted field.
I'd like ...
3
votes
5answers
130 views
Average value using fold
How would I calculate the average of a list of numbers using map and reduce.
Ideally I want to call reduce on a list and get an average back. You may optionally map and filter that list first.
A ...
3
votes
4answers
134 views
C# question about a delegate
In the code below i am calling the extension method [average] 3 times.
First with a lambda, then by an anonymous method and third via a delegate.
The way with the delegate doesn't work. Can somebody ...
3
votes
2answers
139 views
Average timestamp in batch file
so in short my script currently outputs a csv with the log name, time stamp (10:38:52) and the message (Verification: SUCCESS and SendResponse: Response message).
I now need for this script to be ...
3
votes
1answer
478 views
Using R to get volatility and Peak to avg. Ratio of internet traffic data
I have network traffic data in the following for for each hour of a ten day period as follows in a R dataset.
Day Hour Volume Category
0 00 100 P2P
...
3
votes
3answers
218 views
TSQL- Finding the difference in days of multiple records in SQL Server
Is it possible to find the difference of days of different records in SQL Server 2008 R2?
SELECT OrderDate FROM OrdersTbl WHERE SKU='AA0000' ORDER BY ORDERDATE DESC
OrderDate
...
3
votes
4answers
567 views
How do I calculate a 3D centroid?
Is there even such a thing as a 3D centroid? Let me be perfectly clear—I've been reading and reading about centroids for the last 2 days both on this site and across the web, so I'm perfectly aware at ...
3
votes
3answers
374 views
How is IObservable<double>.Average supposed to work?
Update
Looks like Jon Skeet was right (big surprise!) and the issue was with my assumption about the Average extension providing a continuous average (it doesn't).
For the behavior I'm after, I ...
3
votes
4answers
3k views
Getting average value from matlab plot?
I have a simple plot which feature a lot of data points, when i have have graph. Is there a way that i can simple click on all these point and allow matlab to give me a average value of them?
Thank ...
3
votes
1answer
2k views
Mysql Average on time column?
SELECT avg( duration ) as average FROM `login`;
The datatype for duration is "time", thus my value is like: 00:00:14, 00:20:23 etc
I execute the query it gives me: 2725.78947368421
What is that? I ...
3
votes
3answers
142 views
What's the most efficient way to get the horizontal average in a MySQL query?
I have the following MySQL-table
Id | One | Two | Three
----------------------------
1 | 10 | 30 | 20
2 | 50 | 60 | 20
3 | 60 | NULL | 40
Edit: Of course the table ...
3
votes
8answers
172 views
How to reduce calculation of average to sub-sets in a general way?
Edit: Since it appears nobody is reading the original question this links to, let me bring in a synopsis of it here.
The original problem, as asked by someone else, was that, given a large number of ...
3
votes
6answers
502 views
What bizarre averaging algorithm is my bike computer using?
My bike computer can show me various figures such as distance travelled, time elapsed, max speed, average speed, current speed etc. I usually have it set to display the current and average speeds.
...
3
votes
9answers
660 views
Average User Download Speeds
Any ideas what the average user's download speed is? I'm working on a site that streams video and am trying to figure out what an average download speed as to determine quality.
I know i might be ...
2
votes
0answers
41 views
data structure for storing data and calculate average
In this problem, we are interested in a data structure that supports keeping infinite numbers of Y axis parallel vectors.
Each node contains location (X axis value) and height (Y axis value). We can ...
2
votes
5answers
101 views
Calculating two different averages in C++
My assignment is to calculate bowling averages. I have five players, and three games for each player. I currently have two loops running, one for the player, and the other for the game number. I need ...
2
votes
2answers
132 views
Calculate Exponential Moving Average on a Queue in C#
I have a simple class for calculating the moving average of values I add to it. I use it like this:
MovingAverage ma = new MovingAverage();
ma.push(value1);
ma.push(value2);
...
...
2
votes
4answers
110 views
MYSQL/PHP - Return average of rows while value doesn't change?
The title of this doesn't quite make sense, so I'll do my best to explain.
I have a very large dataset (1000's of rows) in a single table. The data in this table relates to GPS tracking of vehicles. ...
2
votes
2answers
103 views
Rolling Average to calculate rainfall intensity
I have some real rainfall data recorded as the date and time, and the accumulated number of tips on a tipping bucket raingauge. The tipping bucket represents 0.5mm of rainfall.
I want to cycle through ...
2
votes
2answers
37 views
Getting the average number of orders per day using mysql
I have the following table structure:
ID, User_ID, DateTime
Which stores a user id and datetime of an order purchased. How would I get the average number of orders a day, across every row?
In ...
2
votes
2answers
74 views
Android: Getting average sensor value
I'm trying to store the average light level (using the light sensor) from the past few seconds to use in a comparison to call another function if the current light level is about 25% of the average.
...
2
votes
2answers
73 views
Python numpy averaging
Averaging a table like this is not a problem
table = [[1,2,3,0],[1,2,3,0],[1,2,3,4]]
You can
print numpy.average(table,axis=0)
But what if i have uneven sequences like:
table = ...