Tagged Questions
The approximation tag has no wiki summary.
31
votes
4answers
3k views
Convert light frequency to RGB?
Does anyone know of any formula for converting a light frequency to an RGB value?
16
votes
7answers
418 views
Approximate, incremental nearest-neighbour algorithm for moving bodies
Bounty
This question raises several issues. The bounty will go to an answer which addresses them holistically.
Here's a problem I've been playing with.
NOTE I'm especially interested in solutions ...
11
votes
3answers
107 views
Unit Testing Approximation Algorithms
I'm working on an open-source approximation algorithms library for graphs and networks using some popular python packages as a base. The main goal is to encompass up-to-date approximation algorithms ...
10
votes
3answers
377 views
approximating log10[x^k0 + k1]
Greetings. I'm trying to approximate the function
Log10[x^k0 + k1], where .21 < k0 < 21, 0 < k1 < ~2000, and x is integer < 2^14.
k0 & k1 are constant. For practical purposes, you ...
9
votes
1answer
187 views
C++ library for integer trigonometry, speed optimized with optional approximations?
I've reached the point in a project where it makes more sense to start building some support classes for vectors and misc trigonometry than keep using ad-hoc functions. I expect there to be many C++ ...
6
votes
6answers
308 views
Fast hyperbolic tangent approximation in Javascript
I'm doing some digital signal processing calculations in javascript, and I found that calculating the hyperbolic tangent (tanh) is a bit too expensive. This is how I currently approximate tanh:
...
6
votes
1answer
142 views
How to measure complexity of a string?
I have a few long strings (~ 1.000.000 chars). Each string only contains symbols from the defined alphabet, for example
A = {1,2,3}
Sample strings
string S1 = "1111111111 ..."; //[meta complexity] ...
6
votes
3answers
232 views
Difference among approximatelyEqual and essentiallyEqual in The art of computer programming
I get this code snippet from some where else. According to the webmaster, the code is picked from The art of computer programming by Knuth
Since I do not have a copy of that book, may I know what is ...
5
votes
3answers
291 views
Trilateration with limits?
I'm in need of help solving an issue, the problem came up doing one of my small robot experiments, the basic idea, is that each little robot has the ability to approximate the distance, from ...
5
votes
8answers
541 views
Choosing random numbers efficiently
I have a method, which uses random samples to approximate a calculation. This method is called millions of times, so its very important that the process of choosing the random numbers is efficient.
...
4
votes
5answers
828 views
Sum of decimal number in java
I have a problem for the managemente of decimal number in java (JDK 1.4).
I have two double numbers first and second (as output of formatted String). I do a sum between fist and second and I receive ...
4
votes
3answers
266 views
Fast, approximate solution to linear equations?
I need to solve a system of N linear equations as an intermediate step in a numerical optimizer. AFAIK reasonably simple algorithms for doing so exactly are O(N^3) (though I saw a horibly complicated ...
4
votes
3answers
442 views
SSE normalization slower than simple approximation?
I am trying to normalize a 4d vector.
My first approch was to use SSE intrinsics - something that provided a 2 times speed boost to my vector arithmetic.
Here is the basic code: (v.v4 is the input) ...
4
votes
1answer
384 views
A 2-approximation algorithm for Vertex-Cover problem using “Spanning Tree”
I have seen a question on 2-approximation algorithm for Vertex-Cover problem(VC, known Np-Complete problem), and i don't know the answer. The problem is the following : Find a 2-approximation ...
4
votes
6answers
299 views
float to double assignment
Consider the following code snippet
float num = 281.583f;
int amount = (int) Math.round(num*100f);
float rounded = amount/100.0f;
double dblPrecision = rounded;
double dblPrecision2 = num;
...
4
votes
1answer
220 views
How to Create an approximation of a 2-d Arc with line segments?
I have a poly-line-contour consisting of line segments and arcs of circles which i want to extrude to prisms.
As my extrusion functions only support straight-edge polygons, i need to approximate the ...
4
votes
2answers
190 views
Looking for an estimation method (data analysis)
Since I have no idea about what I am doing right now, my wording may sound funny. But seriously, I need to learn.
The problem I'm facing is to come up with a method (model) to estimate how a software ...
4
votes
3answers
894 views
Interpolation advice (linear, cubic?)
I need to find good approximations of the points where an undefined function intersect a threshold value. I'm stepping through my space and whenever I find that two subsequent steps are on different ...
3
votes
2answers
47 views
How do I store data with a query that's a approximated?
I'm trying to find a way to store my data with fast access (better than O(n)).
My database consists of data (4096 byte strings) that represents some information about some items.
The problem is, that ...
3
votes
2answers
293 views
An approximate algorithm for finding Steiner Forest
Consider a weighted graph G=(V,E,w). We are given a family of subsets of vertices V_i.
A Steiner Forest is a forest that for each subset of vertices V_i connects all of the vertices in this subset ...
3
votes
5answers
723 views
approximation methods
I attached image:
So in this image there is a diagram of the function, which is defined on the given points.
For example on points x=1..N.
Another diagram, which was drawn as a semitransparent ...
3
votes
7answers
1k views
Is there a way to get the number of places after the decimal point in a java double?
I'm working on a Java/Groovy program. I have a double variable that holds a number that was typed in by a user. What I really want to know is how many numbers the user typed to the right of the ...
2
votes
0answers
31 views
How to calculate residuals for two curves (matrixes) of different size?
I've got a theoretical curve which was calculated numerically and an experimental curve (better to say a massive of experimental points). I need to calculate the residuals between these two curves to ...
2
votes
1answer
61 views
What is the best algorithm for computing rectilinear minimum Steiner tree?
There are many algorithms that find approximations of rectilinear Steiner minimum trees (RSMT). Among them are:
a suite of algorithms that find minimum spanning trees
RST-T (rectilinear single trunk ...
2
votes
3answers
211 views
Division by a constant using shifts and adds/subtracts
Hi all I'm trying to divide by an unsigned constant using only shifts and adds/subtracts - I have no problem with this if it were multiplication, but I'm a bit stumped by the division.
For ...
2
votes
1answer
108 views
graph algorithm, approximation algorithm
After removing the leaves of the dfs tree of a random graph , suppose the number of edges left is |S|, can we prove that the matching for that graph will be |S|/2?
2
votes
1answer
132 views
Finding 3 dimentional B-spline controll points from given array of points from spline solution?
Wa are talking about Non-uniform rational B-spline. We have some simple 3 dimentional array like
{1,1,1}
{1,2,3}
{1,3,3}
{2,4,5}
{2,5,6}
{4,4,4}
Which are points from a plane created by some ...
2
votes
3answers
907 views
What is the difference between a 'combinatorial algorithm' and a 'linear algorithm'?
Or rather, what is the definition of a combinatorial algorithm and a linear algorithm, resp.?
To make it clear because obviously the first responders misunderstood the question: I am not looking for ...
2
votes
2answers
1k views
Approximating a shape boundary using Fourier descriptors
I am trying to approximate shape boundaries by using Fourier descriptors. I know this can be done because I've learned about it in class and read about it in several sources.
To obtain the Fourier ...
2
votes
4answers
247 views
what is the best way to get an approximate number of search results from a query?
to describe it some more, if i have an image map of a region that when clicked, a query is performed to get more information about that region.my client wants me to display an approximate number of ...
1
vote
0answers
24 views
Two Dimensional Curve Approximation
here is what I want to do (preferably with Matlab):
Basically I have several traces of cars driving on an intersection. Each one is noisy, so I want to take the mean over all measurements to get a ...
1
vote
4answers
55 views
Why is the data stored in a Float datatype considered to be an approximate value?
I've never understood why a float datatype is considered an approximation while a decimal datatype is considered exact. I'm looking for a good explanation, thanks.
1
vote
2answers
163 views
Why does SELECT FLOAT(0.1) return 0.1 in DB2?
Why executing the following SQL statement on DB2 returns * 0.1?
select FLOAT(0.1) from sysibm.sysdummy1
I was expecting an approximated result like for REAL(0.1);
Why and where does the rounding ...
1
vote
1answer
143 views
Can I break down a large-scale correlation matrix?
the correlation matrix is so large (50000by50000) that it is not efficient in calculating what I want. What I want to do is to break it down to groups and treat each as separate correlation matrices. ...
1
vote
2answers
287 views
How to implement proximity search for latitude and longitude values?
my application (Qt based mobile application) gets data from a server in the following format : latitude,longitude,description.
I need to store this data in a data structure for quick retrieval later. ...
1
vote
2answers
241 views
Function approximation with Maclaurin series
I need to approx (1-x)^0.25 with given accuracy (0.0001 e.g.). I'm using expansion found on Wikipedia for (1+x)^0.25. I need to stop approximating when current expression is less than the accuracy.
...
1
vote
2answers
532 views
Traveling salesman library using approximation algorithm
I'm currently doing a project that requires some fast TSP solving (about 50-100 nodes in 2 seconds). There are a lots of approximation algorithms out there, but I don't have time nor will to analyze ...
1
vote
3answers
76 views
Algorithm for online approximation of a slowly-changing, real valued function
I'm tackling an interesting machine learning problem and would love to hear if anyone knows a good algorithm to deal with the following:
The algorithm must learn to approximate a function of N ...
1
vote
3answers
125 views
Approximate Estimation of Distance Matrices
I have a set of N objects, and I'd like to compute a NxN distance matrix. Sometimes my set of N objects is very large, and I'd like to compute an approximation to the NxN distance matrix by only ...
0
votes
2answers
63 views
Dynamic programming approximation
I am trying to calculate a function F(x,y) using dynamic programming. Functionally:
F(X,Y) = a1 F(X-1,Y)+ a2 F(X-2,Y) ... + ak F(X-k,Y) + b1 F(X,Y-1)+ b2 F(X,Y-2) ... + bk F(X,Y-k)
where k is a ...
0
votes
1answer
39 views
Having trouble outputting decimal approximations
So I've decided to make a hypergeometric distribution calculator (probability and statistics stuff). The problem is that the output will always be between 0 and 1. So Python rounds down to 0 or up ...
0
votes
1answer
52 views
Approximate function with genetic algorithm
Are there modules in python to approximate a given function(a) with a genetic algorithm to receive a function(b) which produces the same or similar outputs with the same inputs? Why approximate? The ...
0
votes
0answers
23 views
searching API for stochastic free fall with wind
I need to find an implementation for stochastic free fall with wind or numerical approximation in Java or API that can help me, I have already searched on Google.
Thanks
0
votes
3answers
204 views
Approximation of Incomplete gamma function
How could one approximate Inverse Incomplete gamma function Г(s,x) by some simple analytical function f(s,Г)?
That means write something like x = f(s,Г) = 12*log(123.45*Г) + Г + 123.4^s .
(I need at ...
0
votes
0answers
67 views
Set Cover:Greedy vs LP
Both, the greedy and the LP approach for Set Cover give a O(log n) approximation.
Is there some inherent difference on the two approximation approaches?
thanks
0
votes
2answers
249 views
Reading images and approximating and recreating each pixel with closest colours?
http://pastebin.com/v0B3Vje2
I'm looking for a way to get pixels from an image, then find the closest color to that in another program(I can compile it into the source of the "Another program"; ...
0
votes
1answer
74 views
Explain 0-extension algorithm
I'm trying to implement the 0-extension algorithm.
It is used to colour a graph with a number of colours where some nodes already have a colour assigned and where every edge has a distance. The ...
0
votes
0answers
149 views
Nurbs Surface Approximation
I'm trying to approximate a Nurbs surface.
I've chosen a knot insertion method which stops when quads defined by poles are flat enough.
Once I did it I have mi grid of poles and I need to match poles ...
0
votes
2answers
161 views
Neural Network Approximation Function
I'm trying to test the efficiency of the Neural Networks as approximation functions.
The function I need to approximate has 5 inputs and 1 output, which structure should I use?
I have no idea on ...
0
votes
1answer
57 views
What are my options for interpolation of such data
Having dramatically difrent step sizes, and not much data. We have data like >--4-6----3-9----4-7----9-3----4-1----> ( - is step here )and in real life this data is looped in a circle. what ...