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
11
votes
0 answers

Java stacktrace utils library?

I'm looking for some stacktrace analysis and manipulation library. It should contain methods like StackTraceElement findFirstSublassOf( Class cls, StackTraceElement[] stacktrace) StackTraceElement[] stacktrace findCommonRoot( StackTraceElement[]…
Ondra Žižka
  • 43,948
  • 41
  • 217
  • 277
11
votes
6 answers

What are a posteriori and a priori analyses of algorithm operations?

I am a new developer. Please help me understand what a posteriori and a priori analyses of algorithm operations are. I googled it, but I did not get any proper answers.
Ayesha
  • 622
  • 2
  • 5
  • 17
10
votes
2 answers

Can't install Matplotlib in python 3.7

For install matplotlib in windows 10 64 bit machine get error showing python setup.py egg_info" failed with error code 1 in C:\Users\Animus\AppData\Local\Temp\pip-build-urqbuxb_\unroll\ please help
Zahid Uan Nabi
  • 159
  • 1
  • 1
  • 16
10
votes
1 answer

How to execute a MDX query of SQL Analysis Server in C#

I want to execute a SQL Analysis Query in C#. I have successfully connected to Analysis database using the below code: Server DM_Server = new Server(); Database AS_Database = new Database(); DM_Server.Connect(//SQL Analysis Server Connection…
Quest
  • 444
  • 1
  • 6
  • 18
10
votes
1 answer

How to suppress code analysis on generated code?

I have a Silverlight project with a generated Reference.cs file where the service reference is in. The class is attributed with [GeneratedCode] and in the project configuration the code analysis on generated code is disabled (Release and…
Problembär
  • 171
  • 1
  • 1
  • 9
10
votes
4 answers

MP3 bitrate detection through frequency spectrum analysis

Is there any program that detects the bitrate of an MP3? I'm not talking about the effective bitrate that the file has been encoded with, but the real bitrate that can be calculated only by frequency spectrum analysis. For example, if I have an MP3…
eimiar
  • 111
  • 1
  • 1
  • 5
10
votes
8 answers

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.
Kmett
  • 213
  • 1
  • 2
  • 7
9
votes
1 answer

How to have analysis service up and running in SQL Server Express Edition

I am badly stuck up with this problem! I am running Microsoft SQL Server 2008 R2 and Business Intelligence Development Studio. I am assigned a Analysis Project. Now it so happens that I have an express edition and I know that Express edition does…
Kameron
  • 703
  • 3
  • 10
  • 23
9
votes
5 answers

Imaging Question: How to determine image quality?

I'm looking for ways to determine the quality of a photography (jpg). The first thing that came into my mind was to compare the file-size to the amount of pixel stored within. Are there any other ways, for example to check the amount of noise in a…
Mats
  • 14,902
  • 33
  • 78
  • 110
9
votes
4 answers

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 attempts at clarification have resulted in further…
laurencer
  • 1,680
  • 1
  • 19
  • 29
9
votes
2 answers

Best ways to write BDD for long stories

We have recently started using BDD to write our requirements. It's been really helpful, it made the communication between analysts and developers a lot easier. (Combined with user interfaces, and old school requirements) Now we are thinking about…
Celik A
  • 193
  • 1
  • 4
9
votes
13 answers

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 encryption algorithms. What other things can you think…
sul4bh
  • 636
  • 8
  • 21
8
votes
2 answers

Reccurrence T(n) = T(n^(1/2)) + 1

I've been looking at this reccurrence and wanted to check if I was taking the right approach. T(n) = T(n^(1/2)) + 1 = T(n^(1/4)) + 1 + 1 = T(n^(1/8)) + 1 + 1 + 1 ... = 1 + 1 + 1 + ... + 1 (a total of rad n times) = n^(1/2) So the answer would come…
ftsk33
  • 145
  • 1
  • 2
  • 4
8
votes
1 answer

Tutorial on space complexity of algorithms

Possible Duplicate: Plain English explanation of Big O I have always struggled to calculate the Big-O time and space complexity of the algorithms I write. Can anybody please point to a good resource for studying more about space complexity of…
stressed_geek
  • 2,118
  • 8
  • 33
  • 45
8
votes
3 answers

Friendship not inherited - what are the alternatives?

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 us are C++ gurus. I have put together a small framework that abstracts the…
Anthony
  • 89
  • 2