3
votes
3answers
72 views
Tool for program statistics
Is there a tool which is able to parse my source code (fortran, C or C++) and return statistics such as the number of loops, the average loop size, the number of functions, the num …
-1
votes
6answers
126 views
Generating a gaussian distribution with only positive numbers
Is there any way to randomly generate a set of positive numbers such that they have a desired mean and standard deviation?
I have an algorithm to generate numbers with a gaussia …
0
votes
1answer
27 views
Objective-C implementation of the Wilson Score Interval
I'm looking for an objective-c library or just the functions that can handle calculating the Wilson Score Interval explained here:
http://www.evanmiller.org/how-not-to-sort-by-ave …
0
votes
4answers
39 views
Analytics Tracking of a dynamic page
I am using Google analytics and wish to differentiate between two different cases on the home page, specifically depending on the user being logged in or logged out (similar to fac …
1
vote
5answers
81 views
Efficiently finding the ranks of elements in an array?
How does one find the rank of each element of an array, averaging in the case of ties, efficiently? For example:
float[] rank(T)(T[] input) {
// Implementation
}
auto foo = …
3
votes
4answers
77 views
Standard Normal Distribution z-value function in C#
I been looking at the recent blog post by Jeff Atwood on Alternate Sorting Orders. I tried to convert the code in the post to C# but I ran into an issue. There is no function in .N …
6
votes
8answers
108 views
algorithms to evaluate user responses
I'm working on a web application which will be used for classifying photos of automobiles. The users will be presented with photos of various vehicles, and will be asked to answer …
1
vote
4answers
100 views
Loop over string variables in R
When programming in Stata I often find myself using the loop index in the programming. For example, I'll loop over a list of the variables nominalprice and realprice:
local list …
0
votes
2answers
79 views
R: Summing by Categorical Variable?
I have a data set of comic book unit sales by volume (ex. Naruto v10) that I need to reduce to sales by series (so all Naruto volume unit sales would be added together into a singl …
4
votes
8answers
423 views
Algorithm for Finding Good, Reliable Players
I've the following players, each value corresponds to a result in percentage of right answers in a given game.
$players = array
(
'A' => array(0, 0, 0, 0),
'B' => ar …
1
vote
3answers
83 views
Find only relevant points in MATLAB
I have a MATLAB function that finds charateristic points in a sample. Unfortunatley it only works about 90% of the time. But when I know at which places in the sample I am supposed …
0
votes
1answer
54 views
How to use correlogram to estimate variance?
From a book of computer simulation, I got this two equation.
The first is to calculate correlogram, the second is how to use correlogram to estimate variance.
The common approa …
0
votes
1answer
20 views
Steady state in a process oriented simulation
I'm currently writing a process-oriented simulator using JavaSim for an university exam. The simulator itself is working nicely, but I have one major doubt: is there a correct/best …
3
votes
6answers
217 views
C# Normal Random Number
I would like to create a function that accepts Double mean, Double deviation and returns a random number with a normal distribution.
Example: if I pass in 5.00 as the mean and 2 …
0
votes
4answers
107 views
Looping through a column in R
I am using the stats package R and would like to loop through column[x] in all the rows of a dataframe, operate on the data in each cell in the column with a function and pass the …
