Tagged Questions
The analysis tag has no wiki summary.
39
votes
3answers
2k views
Worst Case Analysis for Regular Expressions
Are there any tools that will take a particular regular expression and return the worst case scenario in terms of the number of operations required for a certain number of characters that the regular ...
13
votes
2answers
125 views
productivity analyzer for vim
Background
I'm looking to build productivity analyzer for vim which could silently display more efficient solution for particular, repetitive task the user doing. The tip might be displayed in growl, ...
13
votes
7answers
1k views
Algorithms for determining the key of an audio sample
I am interested in determining the musical key of an audio sample. How would (or could) an algorithm go about trying to approximate the key of a musical audio sample?
Antares Autotune and Melodyne ...
13
votes
7answers
3k views
Algorithms or libraries for textual analysis, specifically: dominant words, phrases across text, and collection of text
I'm working on a project where I need to analyze a page of text and collections of pages of text to determine dominant words. I'd like to know if there is a library (prefer c# or java) that will ...
12
votes
5answers
356 views
How to find upper envelopes of intersected lines in O(nlogn)?
Disclaimer: Yes, this is a homework and I am thinking about it for a couple of days but couldn't find a way to go.
So there are n straight lines (y= ax + b) and I want to find upper envelopes of them ...
12
votes
3answers
304 views
Are there any studies showing what percentage of software developers are building internal applications as opposed to consumer applications?
I have always wondered what the industry-wide breakdown is between internal/IT applications (e.g. intranet apps, custom reporting, payroll, or related enterprise software) and consumer applications ...
11
votes
7answers
3k views
Determining Word Frequency of Specific Terms
I'm a non-computer science student doing a history thesis that involves determining the frequency of specific terms in a number of texts and then plotting these frequencies over time to determine ...
11
votes
15answers
769 views
How do you prevent over complicated solutions or designs?
Many times we find ourselves working on a problem, only to figure out the solution being created is far more complex than the problem requires. Are there controls, best practices, techniques, etc ...
10
votes
6answers
607 views
Are there APIs for text analysis/mining in Java?
I want to know if there is an API to do text analysis in Java. Something that can extract all words in a text, separate words, expressions, etc. Something that can inform if a word found is a number, ...
9
votes
6answers
695 views
Image analysis in R
I would like to know how I would go about performing image analysis in R. My goal is to convert images into matrices (pixel-wise information), extract/quantify color, estimate the presence of shapes ...
9
votes
2answers
1k views
How to write a project Analysis or project brief?
We are a small (15 ppl) webdevelopment/design company with around 8 fulltime LAMP developers. In order to reduce the amount of errors we make and to prevent our budgets overtaking our estimates i've ...
9
votes
13answers
247 views
What can be parameters other than time and space while analyzing certain algorithms?
I was interested to know about parameters other than space and time during analysing the effectiveness of an algorithms. For example, we can focus on the effective trap function while developing ...
9
votes
3answers
3k views
Algorithms for named entity recognition
I would like to use named entity recognition (NER) to find adequate tags for texts in a database.
I know there is a Wikipedia article about this and lots of other pages describing NER, I would ...
9
votes
2answers
3k views
Escape analysis in Java
As far as I know the JVM uses escape analysis for some performance optimisations like lock coarsening and lock elision.
I'm interested if there is a possibility for the JVM to decide that any ...
8
votes
4answers
286 views
Open-source C++ scanning library
Rationale: In my day-to-day C++ code development, I frequently need to
answer basic questions such as who calls what in a very large C++ code
base that is frequently changing. But, I also need to have ...
8
votes
7answers
476 views
Can someone recommend a resource/site/book to improve problem solving skills [closed]
I am a reasonably experienced developer (.NET, c#, asp.NET etc) but I'd like to hone my problem solving skills. I find that when I come up against a complex problem I sometimes implement a solution ...
8
votes
5answers
2k views
How can I determine how loud a WAV file will sound?
I have a bunch of different audio recordings in WAV format (all different instruments and pitches), and I want to "normalize" them so that they all sound approximately the same volume when played.
...
7
votes
3answers
191 views
Friendship not inherited - what are the alternatives?
This may be a futile question.
I have written/am writing a piece of physics analysis code, initially for myself, that will now hopefully be used and extended by a small group of physicists. None of ...
7
votes
4answers
1k views
Audio analysis to detect human voice, gender, age and emotion — any prior open-source work done?
Is there prior open-source work done in the field of 'Audio analysis' to detect human-voice (say in spite of some background noise), determine speaker's gender, possibly determine no. of speakers, age ...
7
votes
3answers
433 views
Java image analysis - counting vertical lines
I need a little help on an image analysis algorithm in Java. I basically have images like this:
So, as you might guessed, I need to count the lines.
What approach do you think would be best?
...
7
votes
4answers
1k views
Generate Call-Tree from cscope database
I want to generate Full and Partially Call Trees from cscope database of c and c++ projects in Linux.
The project is rather large, so it can be not easy to work with the full call tree of project, so ...
7
votes
8answers
705 views
Pre-sorting analysis algorithm?
It's a well-known isssue with Quicksort that when the data set is in or almost in sort order, performance degrades horribly. In this case, Insertion Sort, which is normally very slow, is easily the ...
7
votes
4answers
677 views
C: Sorting Methods Analysis
I have alot of different sorting algorithms which all have the following signature:
void <METHOD>_sort_ints(int * array, const unsigned int ARRAY_LENGTH);
Are there any testing suites for ...
7
votes
2answers
2k views
N-grams: Explanation + 2 applications
I want to implement some applications with n-grams (preferably in PHP).
Which type of n-grams is more adequate for most purposes? A word level or a character level n-gram? How could you implement ...
7
votes
3answers
338 views
Test Reporting
We are migrating our test report data (unit, regression, integration, etc..) from an XML format to a database format for better analysis. Right now the majority of our test analysis is done using the ...
7
votes
9answers
1k views
Mathematical analysis of a sound sample (as an array of numbers)
I need to find the frequency of a sample, stored (in vb) as an array of byte. Sample is a sine wave, known frequency, so I can check), but the numbers are a bit odd, and my maths-foo is weak.
Full ...
6
votes
2answers
90 views
Algorithm to find high/low numbers with at most 1.5n comparisons
I've been thinking about this homework question for a bit now. Given an number array of size n, design an algorithm that will find the high and and low values with at most 1.5n comparisons.
My first ...
6
votes
2answers
1k views
C++, Eclipse CDT code analysis?
Are there any good plugins for static code analysis for Eclipse CDT?
I found two so far:
Cppcheck plugin, but this still needs the original cppcheck executable
CppChecker, but this didn't work (it ...
6
votes
10answers
238 views
Where do you start your design - code, UI, workflow or whatever?
I was discussing this at work, and was wondering where people start their designs? We tend to start with designing code to solve the problem presented to us, but that is probably all of us are (or ...
6
votes
15answers
13k views
Prestashop compared to Zen-Cart and osCommerce [closed]
I'm considering Prestashop for a new project. It seems to be younger than Zen-Cart and osCommerce. Since I just found it by Google, I'd like to gather comments and experience and comparison of ...
6
votes
10answers
27k views
Tool for analyzing java core dump
If i make java core dump with gcore then what is the best tool to analyze it? I need to be able make jmap, jstack, jstat etc and also i need to see values of all variables.
Something that can take ...
6
votes
6answers
864 views
What's the most insidious way to pose this problem?
My best shot so far:
A delivery vehicle needs to make a series of deliveries (d1,d2,...dn), and can do so in any order--in other words, all the possible permutations of the set D = {d1,d2,...dn} ...
6
votes
4answers
4k views
Bpm audio detection Library
I'm looking for a library that simplify tempo/bpm audio detection.
Something similar to this http://adionsoft.net/bpm/ , but to use on *NIX machines.
Any language, but preference goes to php, perl, ...
6
votes
7answers
2k views
Find out the real file type
I am working on an ASP web page that handles file uploads. Only certain types of files are allowed to be uploaded, like .XLS, .XML, .CSV, .TXT, .PDF, .PPT, etc.
I have to decide if a file really ...
6
votes
8answers
3k views
Web Server Log Analysis Tool
Any suggestions for an accurate Web Log analysis tool to generate reports on the IIS logs? We used WebTrends, but I don't feel it was accurate.
6
votes
4answers
1k views
Comparison of Python and Perl solutions to Wide Finder challenge
I'd be very grateful if you could compare the winning O’Rourke's Perl solution to Lundh's Python solution, as I don't know Perl good enough to understand what's going on there. More specifically I'd ...
5
votes
3answers
228 views
Difference between average case and amortized analysis
I am reading an article on amortized analysis of algorithms. Following is text snippet.
Amortized analysis is similar to average-case analysis, in that it is
concerned with the cost averaged ...
5
votes
3answers
325 views
Methods in Object-Oriented Design
Q1.
In my university studies of object-oriented modelling and design they recommend thinking about what an object can do for its method, and what its responsibilities are for its attributes. All ...
5
votes
4answers
7k views
Where is the Query Analyzer in SQL Server Management Studio 2008 R2?
I have some SQL thats getting run and it is taking to long to return the results / parse / display, etc. in a asp.net c# application.
I have SQL Server Management Studio 2008 R2 installed to connect ...
5
votes
4answers
220 views
Who is doing investigations into measurement of functionality and usability?
I am seeking pointers to assist the direction of my research into providing assessements of functionality, usability or elegance in system development.
Can you provide references to work being done ...
5
votes
2answers
422 views
How to use existing Eclipse MAT indexes for interactive analysis
I am attempting to use Eclipse MAT (Memory Analysis Toolkit) to analyze some rather large heap dumps (~2G). My laptop unfortunately has 32bit Windows, and MAT runs out of heap space @ 1.4G allocated ...
5
votes
4answers
465 views
Recommend a good BPMN book?
I need a concise overview of Business Process Modelling Notation.
Something like the O'Reilly's Learning UML book would be ideal.
The BPMN Modeling and Reference Guide is probably more than I need.
5
votes
6answers
408 views
Stuck with O notation
I am comparing two algorithms, Prim's and Kruskal's.
I understand the basic concept of time complexity and when the two work best (sparse/dense graphs)
I found this on the Internet, but I am ...
5
votes
6answers
684 views
Custom C# / .NET Code Analysis
What kind of a tool could examine source or assemblies and tell if StringBuilder was ever used? or if the ObjectDataSource was used?
I'm open to source analysis or reflection, but also need to know ...
4
votes
6answers
101 views
String analysis and classification
I am developing a financial manager in my freetime with Java and Swing GUI. When the user adds a new entry, he is prompted to fill in: Moneyamount, Date, Comment and Section (e.g. Car, Salary, ...
4
votes
5answers
117 views
Simple Method to a Simple Parser
I'm trying to create a simple parser and a small text file which follows the following structure:
Variable_name = Value;
VARIABLE_2 = SECOND_VALUE;
Found methods that work, however, use ...
4
votes
1answer
87 views
Is there a better way to identify time interval boundaries of a series pattern?
I have a table of payments, with positive and negative values (i.e., captures and credits). I need to identify the points where we've received a net positive amount, since the last net positive ...
4
votes
3answers
1k views
Static analysis of Java call graph
What I'd like to do is scan a set of Java classes, and trace all method calls from a specific method of an Abstract Class, and within that context, build a list of all code which performs some ...
4
votes
2answers
305 views
Writing Compilers, Lexical Analysis? Help pls
I'm completely new to writing compilers. So I am currently starting the project (coded in Java), and before coding, I would like to know more about the lexical analysis part. I have researched on the ...
4
votes
2answers
437 views
Understanding the Java code life-cycle in JVM from Top to Bottom
I am trying to understand how a java code is executed by the JVM.
say, I write this java code:
public class Hello {
public static void main(String args[])
{
int i = 42;
...