The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
100 views

In Python, how can I check if 2 numbers in a list are within a certain percentage of each other?

I have a large list of numbers, and I want to see if any of them are approximately equal. If 2 numbers are "approximately equal" (for my purposes), both of them fall within 10% of each other (see ...
-2
votes
0answers
52 views

How to partition orthogonal rectangles for minimum area of bounding boxes

Suppose there are N orthogonal rectangles on the planes, overlapping or not. I want to cover them with exact K orthogonal rectangles, overlapping or not. Each input rectangle must be completely ...
0
votes
2answers
58 views

Lucene/Solr for approximate (company) name matching

I have a question regarding Lucene/Solr. I am trying to solve a general (company) name matching problem. Let me present one oversimplified example: We have two (possibly large) lists of names ...
0
votes
1answer
53 views

Mathematica - I want to approximate a root of this equation

I have f[x__]:=(Sqrt[2] Sqrt[-E^(-2 p x) g R (-2-14 p^2-E^(2 p x) Cos[x]+ 2 E^(2 p x) p^2 Cos[x]+3 E^(2 p x) p Sin[x])])/Sqrt[1+4 p^2] g = 10 R = 2 p = 0.3 And I want to find a root ...
0
votes
2answers
90 views

Preselection of probability for approximate string matching

I have recently been tasked with developing an algorithm for checking for duplicate customer records in a database. The DB layout is pretty straightforward: Tens of thousands of rows with fields like ...
0
votes
1answer
153 views

Excel Approximate Text Match

I'm trying to check how many strings in column A approximately match a string in column B. Example: If I have the string "angry_birds_iph_app" in column B, and "angry_birds_iph_app" and ...
0
votes
0answers
27 views

Summing groups of approximate matches and pulling information from the first match in R

I have a vector of text strings that approximately match, but none of them are exact matches. text<-c("it sure does look good","that seems like a bad idea","that sure does look good", "seems like ...
3
votes
3answers
172 views

Pulling information from the first approximate match of a text string in R (and summing the total number of matches)

I'm having trouble summing approximate matches of text strings, as well as pulling information from the string that was matched first in time. I have data that look like this: text<-c("THEN it ...
1
vote
0answers
98 views

approximate algorithm for top-k query in hive?

everyone,in hive ,we use select word,count(*) as cnt from table group by word order by cnt limit N for top-N query. As we kown the speed is not fast,i learn about some approximate algorithm for ...
1
vote
0answers
39 views

Does RSpec support recursive approximate matching?

In RSpec I can do something like this: [1, 2, 3].should =~ [2, 3, 1] Is there a built-in way to make this recursively approximate? For example: x = [ [1, 2], [3, 4] ] y = [ [4, 3], [2, 1] ...
3
votes
2answers
679 views

OpenCV - DrawContour at an offset

I'm using OpenCV for image processing. I am looking for a human body, wich I want to isolate (segment). Currently, I am able to find the contour of the body, and approximate the contour with a ...
2
votes
3answers
325 views

comparing doubles with adaptive approximately equal

I am attempting to make an adaptive 'about equal' method (written in C# but the question is general) accepting two doubles and returning a boolean if they are 'about equal' or not. By adaptive, I mean ...
3
votes
1answer
183 views

Using an “approximate” STL map

I would like to create an STL map to find whether an item is close enough to another item in 3 dimensional space. So far, my "less-than-functor" has worked quite well, pasted to the following link. ...
1
vote
1answer
235 views

Android development, how to get approximate coordinates?

Ok, so I am making a simple app on a surfaceView where I have a bitmap of a ball that goes from the top of the screen to the bottom. Once it gets to the bottom it appears at the top again where it ...
1
vote
1answer
233 views

Compare List Similarity Python

S = ['hom'] L = ['home','honda','Hammer','Elephant'] I want to get output to show similarity hom = home and print home How I can do this? I want to use approximate matching to change "hom" ...
4
votes
3answers
2k views

Approximate string matching

I know this question have been asked a lot of time. I want a suggestion on which algorithm is suitable for approximate string matching. The application is specifically for company name matching only ...
3
votes
4answers
2k views

How do I find the closest array element to an arbitrary (non-member) number?

Seemingly similar questions: "Finding closest number in an array" (in Java) and "find nearest match to array of doubles" (actually a geography problem). I have a (sorted) array of doubles. Given an ...
1
vote
2answers
356 views

Approximate regular expression library for Java?

I have just written some code for approximate string matching. I would like to benchmark my naive algorithm against a more mature implementation running on the JVM. Any suggestions?
1
vote
2answers
343 views

Approximate a R2 line by a set of points

I'm working on an application with statistic analysis, and I need some help. Given a set of n points, how can I approximate a line by them. I'm sure there is an algorithm but I couldn't find it. ...
0
votes
2answers
3k views

sample java code for approximate string matching or boyer-moore extended for approximate string matching

I need to find 1.mismatch(incorrectly played notes), 2.insertion(additional played), & 3.deletion (missed notes), in a music piece (e.g. note pitches [string values] stored in a table) against a ...
1
vote
2answers
454 views

Django approximate matching of unicode strings with ascii equivalents

I have the following model and instance: class Bashable(models.Model): name = models.CharField(max_length=100) >>> foo = Bashable.objects.create(name=u"piƱata") Now I want to be able ...
1
vote
2answers
211 views

Algorithm for approximate search in sorted integer list

Consider an array of integers (assumed to be sorted); I would like to find the array index of the integer that is closest to a given integer in the fastest possible way. And the case where there are ...
1
vote
1answer
194 views

Finding multiple regex hits using approximate matching via the tre library

Using C, I'm trying to find the location and number of matches of a substring within another parent string. Because I also need to include approximate (hamming distance) matches, I'm using the tre ...
7
votes
2answers
7k views

How to use n-grams approximate matching with Solr?

We have a database of movies and series, and as the data comes from many sources of varying reliability, we'd like to be able to do fuzzy string matching on the titles of episodes. We are using Solr ...
0
votes
1answer
246 views

Image shaking when StretchDIBits partially

I am using C++ GDI, StretchDIBits to draw images on DC. Because the original Image is large, and high quality is needed. I use HAFTONE mode, to draw whole image on DC(zoom the image) seems time ...