Tagged Questions

-2
votes
0answers
10 views

scalabity, complexity and simplicity as well as the compilation of perl

Guys, I'm assigned to discuss the scalability, complexity and simplicity as well as the compilation of perl. I don't seem to get any valid info on this, please help.
1
vote
2answers
42 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?
2
votes
2answers
274 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, rot …
0
votes
5answers
239 views

Polygon triangulation

Hey, 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 th …
1
vote
1answer
136 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 …
1
vote
6answers
116 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 …
1
vote
3answers
165 views

Matrix-Algebra Design Decomposition

Hi Guys. 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, …
5
votes
3answers
293 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 retur …