2
votes
4answers
72 views
Minimising distance: distance formula
I am writing a program in C. I want to find a solution by minimizing expression
D1+D2+......+Dn
where Di's are distances calculated by distance formula between 2 points. The above expression is in …
0
votes
0answers
29 views
What is “entropy and information gain”?
I am reading this book (NLTK) and it is confusing. It is defined as "the sum of probability of each label times the log probability of that same label"
How can I apply "entropy " and "maximum …
0
votes
3answers
74 views
Dealing with Negative Numbers in Strings
I have a simple, but perplexing problem, with Math.
The following code will take a number from a string (usually contained in a span or div) and subtract the value of 1 from it.
.replace(/(\d+)/g, …
0
votes
1answer
28 views
Implementing a audio visualizer in WPF
I wish to implement a audio visualizer widget (similar to what Winamp has) in WPF. How would I approach this problem?
1
vote
2answers
80 views
Implementing Wilson Score in SQL
We have a relatively small table that we would like to sort based on rating, using the Wilson interval or a reasonable equivalent. I'm a reasonably smart guy, but my math fu is nowhere near strong …
7
votes
13answers
389 views
How many digits in this base ?
The problem is to derive a formula for determining number of digits a given decimal number could have in a given base.
For example: The decimal number 100006 can be represented by 17,11,9,8,7,6,8 …
0
votes
10answers
100 views
Simple math statements in bash in a for loop.
Hi. I'm quite new to bash scripting and usually avoid it all costs but I need to write a bash script to execute some simple things on a remote cluster. I'm having problems with a for loop that does …
3
votes
7answers
290 views
Count number of points inside a circle fast
Given a set of n points on plane, I want to preprocess these points somehow faster than O(n^2) (O(nlog(n)) preferably), and then be able to answer on queries of the following kind "How many of n …
1
vote
2answers
64 views
How to find the mathematical function defining a bezier curve
Im trying to implement a bezier curve and line segment intersection test. The closest thing my searching has turned up is to take the bezier curve (lets limit it to three control points for …
1
vote
8answers
107 views
Determining output (printing) of float with %f in C/C++
I have gone through earlier discussions on floating point numbers in SO but that didn't clarified my problem,I knew this floating point issues may be common in every forum but my question in not …
4
votes
10answers
224 views
A good algorithm for generating an order number
As much as I like using GUIDs as the unique identifiers in my system, it is not very user-friendly for fields like an order number where a customer may have to repeat that to a customer service …
1
vote
1answer
63 views
Multiplying by inverse matrices?
If I have a matrix which is a combination of World*View*Projection and I multiply it by the inverse of the projection does it yeild the World*View matrix or something else? If not then how can I …
1
vote
1answer
36 views
Find 2 points on a 3d object and get their distance
Hey,
Ok. So I guess thing would to be envision new york city and beijing highlighted on google earth...
I'm trying to figure out how to map points onto a 3d primitive object (a sphere), get their …
5
votes
5answers
441 views
What algorithm to use to solve this simple mathematical problem efficiently?
I am puzzled with the following simple problem:
Given positive integers b, c, m where (b < m) is True it is to find a positive integer e such that
(b**e % m == c) is True
where ** is …
1
vote
4answers
69 views
General Formula to Calculate Polyhedron Volume
Given a list of vertices (v), and a list of edges connecting the vertices (e), and a list of surfaces that connect the edges (s), how to calculate the volume of the Polyhedron?
