Questions tagged [analysis]

Analysis is the process of searching code, documents, or data to answer a particular question or predict a particular result.

References

2144 questions
6
votes
3 answers

Confused about "c lg n" in Introduction to Algorithms book - what is c?

I am reading the book "Introduction to Algorithms" and I am confused by this part: We also assume a limit on the size of each word of data . For example when working with >inputs of size n , we typically assume that integers are represented by c lg…
user3731608
  • 69
  • 1
  • 2
6
votes
2 answers

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 heap. I was successful in running the heap…
ShabbyDoo
  • 1,256
  • 1
  • 11
  • 20
6
votes
14 answers

Prestashop compared to Zen-Cart and osCommerce

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 Prestashop to established "brands" like Zen-Cart and…
Viet
  • 17,944
  • 33
  • 103
  • 135
6
votes
1 answer

How to analyse bitmap image in python, using PIL?

I was wondering how you use Python Imaging Library to analyse a simple bitmap image (say the bitmap has a thick black line at the top) to tell the program were the top of the image is. Maybe output a message when the black line is found. Any example…
Unknowen
  • 83
  • 1
  • 1
  • 5
6
votes
2 answers

Algorithm to find the "percolation" threshold in a weighed network

I have some states that are linked by transition probabilities (embedded within a transition matrix as in a Markov chain). I want to summarise this transition matrix by considering only probabilities sufficiently high that they allow to go from one…
sol
  • 1,389
  • 3
  • 19
  • 32
6
votes
2 answers

Running time using Big Θ notation

def filter(f, lst): if lst == []: return [] if f(lst[0]): return [lst[0]] + filter(f, lst[1:]) return filter(f, lst[1:]) def my_reverse(lst): # Reverse the list def reverse_helper(x,y): if x == []: return y …
atkayla
  • 8,143
  • 17
  • 72
  • 132
6
votes
1 answer

Configure Field analysis handler - Solr 4

I am working on a test Solr instance using Solr4 (beta) - I am able to see the schema, query data. It works fine! When I click on the analysis tab in Solr Admin, I get the analysis form. However, when I submit the form, I get an error message -…
Bharad
  • 529
  • 1
  • 6
  • 15
6
votes
2 answers

Proving non-optimality of a Karnaugh map

I would appreciate some help in finding literature specifically addressing K-map optimality. I understand how, for example, you can map between SOP (sum-of-product) expressions and a K-map, and why in general you would expect the K-map optimized…
6
votes
1 answer

Java has FindBugs. What is equivalent for Ruby?

Possible Duplicate: Automatic code quality tool for Ruby? Java has FindBugs™. What is equivalent for Ruby?
Anil
  • 375
  • 3
  • 13
5
votes
6 answers

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, Computer, Food,...) The sections are created "on the…
Andreas Freitag
  • 357
  • 1
  • 7
  • 20
5
votes
3 answers

Getting the AST of a function

Say I have a function: function hi() print('hi') end I'd like to be able to take this function as an argument and perform analysis on it, such as listing all the function calls in it, seeing all the variables it references, etc. Note that I'm…
Seth Carnegie
  • 73,875
  • 22
  • 181
  • 249
5
votes
3 answers

Two questions regarding the net panel in Firebug

can someone tell me two things about the net panel in firebug? why is there a 'distance' between the first line and the following ones? what is happening there? what is the exact meaning of the blue and red lines on the right side? Any help is…
swalkner
  • 16,679
  • 31
  • 123
  • 210
5
votes
2 answers

Live Range vs Reaching Definitions

In compiler data flow analysis, what is the difference between a live range of a variable and it's reaching definition? Both seem to refer to the same thing...
dodger
5
votes
1 answer

Type of Regex in Eclipse MAT

What type of Regex syntax does MAT support? I assumed it would be Java's (though Java's Regex isnt Regular per se) but it didn't seem to work.. I tried Perl's and it didn't work. I need Regex's to filter out the list in MAT's Histogram. eg: Include…
vmhacker
  • 413
  • 4
  • 7
5
votes
1 answer

Changing a Dataset for a visual in AWS Quick Sight

I am new to Quicksight and trying to change the dataset for a cloned visual. I have created one analysis in AWS Quicksight which contains 6 different datasets from the same Datasource. See below: There are two tabs (report 1 / report 2) in the…