Tagged Questions
The decomposition tag has no wiki summary.
5
votes
3answers
1k views
Generating the partitions of a number
I needed an algorithm to generate all possible partitions of a positive number, and I came up with one (posted as an answer), but it's exponential time.
The algorithm should return all the possible ...
3
votes
5answers
442 views
Decomposition in java, when is enough enough?
I'm a first year computer science student. We are currently programming in java and I often try decompose my program into well named methods so that my main method logic can read as close to ...
2
votes
1answer
66 views
Can anyone explain the anomalous behavior of LU decomposition in Revol R?
A simple matrix benchmark test has indicated that Revolution Analytics R 2.13.2's
LU decomposition is nearly 5 times slower than matrix multiplication.
Theory and many years of practice show that LU ...
2
votes
2answers
90 views
PostgreSQL query decomposition
I fail to decompose simple SQL queries. I use PostgreSQL but my question is also related to other RDBMS.
Consider the following example. We have table orders and we want to find first order after ...
2
votes
3answers
67 views
should this method be decomposed into separate methods?
This method takes search a search keyword and parsed mysql query, and rewrites the where expression to include LIKE %keyword%.
It works well, but I dont know if its good or bad practice to have a ...
2
votes
4answers
352 views
How can I refactor a large block of if statements in Java?
I recently profiled some code using JVisualVM, and found that one particular method was taking up a lot of execution time, both from being called often and from having a slow execution time. The ...
2
votes
1answer
138 views
Any implementations of graph st-ordering or ear-decomposition?
I'm in the search for an implementation of an ear-decomposition algorithm (http://www.ics.uci.edu/~eppstein/junkyard/euler/ear.html). I examined networkx and didn't find one. Although the algorithm ...
2
votes
2answers
2k views
Decompose complex matrix transformation into a series of simple transformations?
I wonder if it is possible (and if it is then how) to re-present an arbitrary M3 matrix transformation as a sequence of simpler transformations (such as translate, scale, skew, rotate)
In other ...
1
vote
1answer
74 views
Svg matrix decomposition
In svg we have method element.getCTM() which returns a SVGMatrix as:
[a c e][b d f][0 0 1]
I want to calculate sx , sy and angle of rotation from this matrix.
1
vote
2answers
61 views
Tuples and unpacking assignment support in C#?
In Python I can write
def myMethod():
#some work to find the row and col
return (row, col)
row, col = myMethod()
mylist[row][col] # do work on this element
But in C# I find myself writing ...
1
vote
0answers
93 views
How to decompose table with reference to Heath's Theorem? [Homework]
I have a general understanding of Heath Theorem but I'm having trouble getting my head around this question:
Use the functional dependencies to carry out a non-loss decomposition in line with Heath’s ...
1
vote
0answers
76 views
Library for PARAFAC decomposition
I am looking for a C++ library that can do PARAFAC decomposition or Tucker3 decomposition. I need it to do an EEG signal analysis.
1
vote
3answers
457 views
Eigenvector (Spectral) Decomposition
I am trying to find a program in C code that will allow me to compute a eigenvalue (spectral) decomposition for a square matrix. I am specifically trying to find code where the highest eigenvalue (and ...
1
vote
2answers
97 views
Complexity of Perl?
What is the general discussion of the complexity of the Perl programming language, like what should one really focus on when discussing its complexity?
1
vote
6answers
134 views
How to partition a problem into smaller understandable portions?
I'm not sure if it's possible to give general advice on this topic, but please try. It's hard to explain my case because it's too complex to explain. And that's exactly the problem.
I seem to ...
1
vote
1answer
631 views
Is there Fortran subroutine in LAPACK/BLAS or somewhere else to calculate LDL decomposition?
Like the title says, I need to form cholesky LDL decomposition for my positive definite matrix A (Like normal cholesky, but there's ones one diagonal of L, and D is diagonal matrix). I have found only ...
1
vote
3answers
236 views
Matrix-Algebra Design Decomposition
I am looking at refactoring some very complex code which is a subsystem of a project I have at work. Part of my examination of this code is that it is incredibly complex, and contains a lot of inputs, ...
0
votes
0answers
17 views
Breaking down genetic algorithm search into subproblems
I have lately been wondering about the pros and cons of breaking down a GA search into subproblems.
Consider a superset of the travelling salesman problem, in which the salesman must first solve a ...
0
votes
1answer
176 views
C++ Recursive decomposition to graphically draw a binary tree [closed]
I'm trying to find the correct recursion call to my function so it draws a tree.
Image:
I wrote code that draws the trunk in the main() and the first 2 branches in the function DrawTree(), but ...
0
votes
1answer
63 views
Sparse Matrix implemantation and operations in java
I have to implement sparse matrix and do some decompositions like Cholesky Decomposition, LU Decomposition, QR Decomposition on it.
Actually I found a library called JAMA which is capable of doing ...
0
votes
1answer
252 views
BCNF Decomposition (Database Design)
I'm trying to decompose several tables into BCNF. I believe the first one is decomposed correctly, but I'm unsure whether or not the others can be decomposed. Any help is appreciated
**make(id, name, ...
0
votes
0answers
105 views
Database extraneous attributes and decomposition
I am kind of confused on the notion of extraneous attributes and a proper decomposition into 3NF.
For example, I have the following relation:
r(A,B,C,D,E,F)
F = FD's
F = {A-> BCD, BC-> DE, ...
0
votes
4answers
257 views
Methods and decomposition
I'm just starting learning Java after a few years of HTML/CSS coding so hopefully I'm not asking a old or stupid question here but any help explaining this problem would be very much appreciated.
...
0
votes
0answers
84 views
Help Normalisation and decomposition exercise in database
Art_Object (Art_Id, Title, Description, Country, Artist, Epoch, Year)
• FD:
• Candidate keys:
• Referential Integrity:
• Normal Form:
• Reasons:
depends on the key {A, B}
Art_Painting ...
0
votes
2answers
218 views
Quadtree issue - storing redundant info
I have an image which is not a square (m x n dimension). Also its dimensions are not to the base 2 (i.e m not = 2^k & n not = 2^k). I have dealt with this by placing the image in a larger square ...
0
votes
1answer
167 views
Quadtree decomposition on non square image
Does anyone know the best way to perform Quadtree decomposition on a non square image? I keep getting lines appearing across my image which is drawn using a Quadtree.
0
votes
2answers
235 views
Aggregation and Decomposition in JPA
How do you implement aggregation and decomposition with Java Persistence API? What are the best practices?
Thanks in advance,
Daniel
0
votes
2answers
233 views
Decomposition and decoding of nested dictionary/json
In my app I'm connecting to a server which returns some json style unicode string resembling dictionary of dictionaries. As a result I'd like to get one leveled dictionary with id as a key and unicode ...
0
votes
2answers
126 views
File structure explorer (sth like Wireshark, but for files)
I am looking for a software which is able to decompose and analyze files. Do you know any?
What I mean is something that, given a file, would tell me for example:
here is the magic number telling ...
0
votes
5answers
915 views
Polygon triangulation
I am working on nesting of sheet metal parts and am implementing Minkowski Sums to find No Fit Polygons for nesting. The problem is I can give only convex sets as input to the code which calculates ...