Testing whether a data structure has a particular shape or contains particular values in certain locations. Many functional languages provide pattern matching constructs. Most questions in this tag should also have the tag for the language you are programming in. Do not use this tag for regular ...
1
vote
2answers
169 views
String Pattern Matching using basic String Operations
I have a method that allows the user to specify a remote directory and a searchPattern with with to search files in the remote directory. Since I use third party libraries when retrieving the names of ...
0
votes
0answers
121 views
Extract Patterns in an Interger Array
My first question in SO :)
In short, my problem is to find several integer "patterns" in an integer array; the result should be optimal with respect to the total value of all the patterns extracted. ...
0
votes
1answer
34 views
Dealing with outlier in a MFFC with DTW setup
I have a small command recognition system in which the user first records his commands then later the system tries to recognize them . The front end's feature vector are MFCC's coefficients. The back ...
0
votes
0answers
43 views
How to avoid NaN value in PCA
I used OpenCV PCA to get eigenvectors and eigenvalues. But the eigenVectors are filled with NaN value. So I can't do further process. How to avoid NaN values while PCA in OpenCV?
cv::PCA ...
0
votes
0answers
33 views
Near real-time song detection for mobile devices
What I need is to implement a system in a mobile app where I can detect whether the audio the user hears is part of a known song (in a very small list of songs).
I will have a few songs (let's say ...
2
votes
2answers
120 views
Java Pattern.quote(“\\d c pb sddsf \n”); Why
Why \n does not get printed out?
System.out.println(Pattern.quote("\\d c pb sddsf \n"));
Basically everything gets printed out apart \n. Any clue? It should "literalize" the whole string, shouldn't ...
3
votes
3answers
73 views
Diffference between Closed and open Sequential Pattern Mining Algorithms
I want to use some algorithms to mine my log data.
I found a pattern mining framework on: http://www.philippe-fournier-viger.com/spmf/index.php?link=algorithms.php
I have tried several algorithms, ...
0
votes
2answers
55 views
Wilcard in url patterns Yii Framework
I'm trying to create a dynamic url pattern for the following url:
http://domain.com/content/pagetitle
This is what I have added in the url.rules:
'content/<page:.*?>' => ...
2
votes
3answers
211 views
Performance issues in Regular Expression
I am having my REST service which is running under heavy load, meaning it is getting lot of traffic around some million read calls per day. My REST servcie will do the lookup from the database basis ...
1
vote
2answers
71 views
I am trying to compare two Tuples
I am trying to write a function to compare tuples of similar type.
def compareTuples(tuple1: (String, String, Int), tuple2: (String, String, Int)): (String, String, Int) = {
// if tuple1.Int < ...
-4
votes
3answers
64 views
Java: Pattern Matching Does not work with “*” [closed]
Why does the following code throw an exception? I want to get all the items in my list. However, while the following code is executed, its throwing an exception.
Pattern p = Pattern.compile("*");
...
1
vote
1answer
36 views
Using patsubst to convert one path into another
In order to make the directory strcuture of my project a bit more organized I want to put sourcefiles for the same modules into seperate directory. All objectfiles should be put into obj directory. I ...
0
votes
2answers
204 views
How to use cascade.xml for object recognition in openCV
I've generated cascade xml in openCV using haar training module.. Now how can I use it for Object recognition.?
Please help.!! _/_
0
votes
1answer
32 views
Pattern match every occurence of first and third words (with everything inbetween)
I am trying to what I think is a simple regex pattern.
I have a text file that looks something like this:
Blah Blah Blah http://www.google.com. Something else here, blah blah
bah. ...
3
votes
1answer
96 views
When would you use KMP over BOYER-MOORE
I am currently learning about pattern matching algorithms and have come across these two algorithms. I have the following general ideas:
KMP
Compares text left-to-right
Uses a failure array to ...
1
vote
2answers
32 views
Detect and match function opening and end brace in source code
I would like to know if there are already good algorithms to detect function declaration, function content, its opening brace and closing one.
For development, debug and testing for bugs, it could be ...
0
votes
1answer
51 views
Algorithm for impelemnting a survey-like program
I wish to create a program in Java which will ask the user a number of questions and report some results. It is pretty much like a survey. In order to explain the problem better consider the ...
0
votes
3answers
97 views
Matching regular and dash separated word with regex
I want to match words seperated by dash - and also regular word.
Currently i'm using this regular expression
\b(word|someother|xyz|....|word50)\b // upto 50 words
but now the trouble is I also want ...
3
votes
1answer
171 views
Shape Pattern Matching Algorithm in Java [closed]
I'm looking for a Java implementations of shape matching algorithms.
here's an image to demonstrate of what i had in mind :
I would also be interested to know if there are any good free ...
0
votes
1answer
54 views
Processing multiple files in Python, and matching on fields
I have a number of CSV files which I need to compare to one 'Master List', and determine, based on a unique ID, if these other files contain entries for that key.
What would the easiest way to do ...
0
votes
1answer
55 views
Scan String with Ruby Regular Expression
I am attempting to scan the following string with the following regular expression:
text = %q{akdce ALASKA DISTRICT COURT CM/ECFalmdce
ALABAMA MIDDLE DISTRICT COURTalndce
}
p ...
0
votes
1answer
50 views
How to find unique occurances that match several conditions
I have a df:
df
These Years are present Runlength YearSpan Company
1 1920 1 1920-1920 AB ...
1
vote
3answers
132 views
How to pattern match on generic type in Scala?
Let's suppose we have a generic class Container:
case class Container[+A](value: A)
We then want to pattern match a Container with a Double and a Container of Any:
val double = Container(3.3)
...
2
votes
4answers
171 views
Pattern matching lists of certain size or greater/less
Is there a way to specify a pattern that matches a List with a size greater (or less) or equal a certain value in Scala?
For example, if I want to apply the same action to all lists of size 3 or ...
0
votes
2answers
65 views
How do you determine the type of the catch all in a scala pattern match case?
If you have a pattern matching (case) in Scala, for example:
foo match {
case a: String => doSomething(a)
case f: Float => doSomethingElse(f)
case _ => ? // How does one determine ...
6
votes
3answers
271 views
Check if list is flat in Haskell
In The Little Schemer there is a function to check, whether the list is flat:
(define lat?
(lambda (l)
(cond
((null? l) #t)
((atom? (car l)) (lat? (cdr l)))
(else #f))))
I'm ...
2
votes
2answers
88 views
Why is a filter implementation needed in this case?
The following code fails to compile:
scala> case class T3( x:Int,y:Int,z:Int) { def foreach[U](f:((Int,Int,Int)) => U) = f( (x,y,z) ) }
defined class T3
scala> for ( (x,y,z) <- T3(1,2,3) ...
0
votes
2answers
62 views
How to use pattern in Java to fetch groups like 'sscanf' does in C?
I have String user@domain:port
I want to fetch user, domain and port from this String.
So I created regex:
public static final String MATCH_USER_DOMAIN_PORT = ...
0
votes
1answer
104 views
Pattern Image Processing
I am want to make a simple application that will detect a patterns on the wall like the image below.
So the patterns will be pasted on the wall. The camera will rotate around 360 degrees and ...
0
votes
1answer
38 views
Bind extractor symbols multiple times in OR based pattern matching
Is it possible somehow to use an OR based pattern match that binds symbols to common elements, like:
import swing._
import event._
new Label {
listenTo(mouse.clicks)
listenTo(mouse.moves)
...
0
votes
3answers
70 views
Regex matches not working [duplicate]
I am doing a very simple task: parsing a website, looking for
<tbody>this is what important for me</tbody>`
and returning but I just cannot make it work. When I do:
...
1
vote
2answers
101 views
Pattern Matching Using SQL
I need to match bellow mentioned patterns using SQL.
"* THANK YOU"
"* MUSIC *"
"I LIKE * MUSIC"
"I LIKE * MUSIC AND * PAINTING"
Input strings will look like this,
"HI THANK YOU" -> should match ...
-2
votes
2answers
54 views
Pattern Matching Qualifiers [closed]
((?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[@#$%]).{6,20})
Could someone please explain these qualifiers briefly.
I got this Pattern from
...
0
votes
1answer
98 views
Pattern Matching with Ruby
Im looking to match two strings and return a score, I don't care about order, just the percentage of character matches.. I was looking at the 'string_score' gem but it cares about order.. as can seen ...
0
votes
2answers
43 views
String matching between files Linux
I have two files that I want to compare. The first is tab separated, the second is comma separated and both begin with an ID. I want to match those IDs and do two things. First, I want to print out ...
1
vote
3answers
52 views
quick pattern explain
I want this string:
value="1,'goahead'" your='56' so='"<br />"'
I want php regex to return result array as following :
value="1,'goahead'"
your='56'
so='"<br />"'
I tried this regex ...
1
vote
1answer
89 views
Unix filename wildcards in Python?
How do Unix filename wildcards work from Python?
A given directory contains only subdirectories, in each of which there is (among others) one file whose name ends with a known string, say _ext. The ...
1
vote
5answers
150 views
Finding daily patterns with machine learning
I have created a huge log of daily activity in the format [timestamp, location]. For example
[{1365650747255, 'san francisco'},
{1365650743354, 'san francisco'},
{1365650741349, 'san mateo'},
...
0
votes
0answers
123 views
Pattern recognition by neural networks, using binary data sparse matrices
My neural network has to learn to output yes or no, based on the occurrence of particular groups in the input. There are 21 groups, so a given group is represented by twenty '0's and one '1'. The ...
1
vote
1answer
108 views
Unknown Error in Number Prediction Algorithm
So I'm working on this simple number prediction algorithm as an entry into algorithms and pattern recognition. It takes a linear string of numbers (14 in this case) starting at 2 and going up by 2 ...
-4
votes
2answers
309 views
Simple RegEx pattern for validating “Firstname Lastname” in JavaScript [duplicate]
One of my biggest mistakes and gaps in my programming knowledge is the disknowledge of "Regular Expressions". I just can't to seem to learn them well, so I will need thee help.
I have not tried ...
3
votes
1answer
39 views
Advanced sequence alignment
Assume the following generative model for plagiarism:
The plagiarist:
1. Removes parts of the text
2. Rearranges parts of the text
3. Adds new text.
Ex. If ABCD is the original text (A,B,C and D can ...
0
votes
3answers
25 views
Eliminate lines not matching multiline pattern
I'm searching through a logfile, trying to determine the total time a user was logged on. I've already eliminated all lines not related to logins and logoffs. However, for some reason we have login ...
1
vote
2answers
100 views
Consequent/nested pattern matches
When I send a variable through several pattern matches, what is the naming convention for doing so?
val somethingBetweenOriginalAndResult = original match {
case ...
case ...
}
val ...
1
vote
2answers
64 views
Multiple pattern matches with same input variable
I oftentimes face the following problem:
val b = a match {
case Some(a) => "1"
case None => "n"
}
val c = a match {
case Some(a) => "2"
case None => "n"
}
Obviously, the match ...
0
votes
0answers
106 views
Pattern matching java
I need to avoid every occurrence of --0101-- in a String. The string of 0s and 1s in between the '--' varies and its length also varies. Can someone guide me with writing the pattern matching ...
0
votes
1answer
128 views
Get list of files where date older than 7 days?
I have a script that creates mysql backups, the files end up being called.
DB_name-M_D_Y.gz so for example stackoverflow_users-04_10_2013.gz
Now I don't know the name of the files before hand, just ...
2
votes
1answer
140 views
Where are the C++ implementations of the advanced ellipse detection algorithms?
I'm a novice in the field of ellipse detection/extraction. But I know this topic has a long history. Although there are tons of papers addressing ellipse detection, I can hardly find any C++ ...
0
votes
2answers
74 views
Extract pattern from image [closed]
Is there any way to figure out the pattern from an image?
I need it so that I could create a smaller image from it to repeat so that I could have a background pattern.
p.s: Don't mind the 2 ...
1
vote
2answers
78 views
Groovy remove text between parentheses in peer and parent child relationship
In groovy, how to remove text between parentheses in peer and parent child relationship? Such as a(b(c)d) returns a. And a(b)c(d) returns ac?
Here is my code. But it can only handle one case. not ...






